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 13 lines 200 B view raw
1import "./EmptyState.css"; 2 3type Props = { 4 message: string; 5}; 6 7export function EmptyState({ message }: Props) { 8 return ( 9 <div className="EmptyState"> 10 <p>{message}</p> 11 </div> 12 ); 13}