Skip to content

Instantly share code, notes, and snippets.

@hesan-aminiloo
Created July 15, 2022 11:21
Show Gist options
  • Save hesan-aminiloo/115ba17b5b812c9f278feb52876ee0d7 to your computer and use it in GitHub Desktop.
Save hesan-aminiloo/115ba17b5b812c9f278feb52876ee0d7 to your computer and use it in GitHub Desktop.
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