an appview-less Bluesky client using Constellation and PDS Queries reddwarf.app
frontend spa bluesky reddwarf microcosm
at main 569 B view raw
1import { createFileRoute } from "@tanstack/react-router"; 2 3import { Header } from "~/components/Header"; 4 5export const Route = createFileRoute("/feeds")({ 6 component: Feeds, 7}); 8 9export function Feeds() { 10 return ( 11 <div className=""> 12 <Header 13 title={`Feeds`} 14 backButtonCallback={() => { 15 if (window.history.length > 1) { 16 window.history.back(); 17 } else { 18 window.location.assign("/"); 19 } 20 }} 21 bottomBorderDisabled={true} 22 /> 23 Feeds page (coming soon) 24 </div> 25 ); 26}