an app to share curated trails sidetrail.app
1

Configure Feed

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

1import "./HomeEmptyState.css"; 2import { NewTrailButton } from "./NewTrailButton"; 3 4type Props = { 5 message: string; 6 buttonText?: string; 7}; 8 9export function HomeEmptyState({ message, buttonText }: Props) { 10 return ( 11 <div className="HomeEmptyState"> 12 <p className="HomeEmptyState-text">{message}</p> 13 {buttonText && <NewTrailButton text={buttonText} />} 14 </div> 15 ); 16}