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 button 10 lines 245 B view raw
1import { createFileRoute } from "@tanstack/react-router"; 2export const Route = createFileRoute("/_pathlessLayout/_nested-layout/route-a")( 3 { 4 component: LayoutAComponent, 5 }, 6); 7 8function LayoutAComponent() { 9 return <div>I'm A!</div>; 10}