Created
July 4, 2022 10:32
-
-
Save koss-lebedev/9c92799addb177c15a8c2139a7f3660c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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