an independent Bluesky client using Constellation, PDS Queries, and other services reddwarf.app
frontend spa bluesky reddwarf microcosm client app
99
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 65f60fa07aef9465dd113d76cd08515821bb8c99 16 lines 340 B view raw
1import { Outlet, createFileRoute } from "@tanstack/react-router"; 2 3export const Route = createFileRoute("/_pathlessLayout")({ 4 component: LayoutComponent, 5}); 6 7function LayoutComponent() { 8 return ( 9 <div className="p-2"> 10 <div className="border-b">I'm a layout</div> 11 <div> 12 <Outlet /> 13 </div> 14 </div> 15 ); 16}