Skip to content

Instantly share code, notes, and snippets.

@koss-lebedev
Created July 4, 2022 10:32
Embed
What would you like to do?
const Header = ({ children }) => (
<header>
<Logo />
<Actions>
{children}
</Actions>
</header>
)
const HomePage = () => (
<>
<Header>
<Link to="/dashboard">Go to dashboard</Link>
</Header>
<OtherHomeStuff />
</>
)
const DashboardPage = () => (
<>
<Header>
<Link to="/events/new">Create event</Link>
</Header>
<OtherDashboardStuff />
</>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment