an app to share curated trails sidetrail.app
atproto nextjs react rsc
50
fork

Configure Feed

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

at main 9 lines 186 B view raw
1import "./WalkingList.css"; 2 3type Props = { 4 children: React.ReactNode; 5}; 6 7export function WalkingList({ children }: Props) { 8 return <div className="WalkingList">{children}</div>; 9}