Skip to content

Instantly share code, notes, and snippets.

@ac12644
Created January 30, 2022 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ac12644/7123d8390d5937a6eeb404ca8a5d3968 to your computer and use it in GitHub Desktop.
Save ac12644/7123d8390d5937a6eeb404ca8a5d3968 to your computer and use it in GitHub Desktop.
<Router>
<div>
<nav>
<ul>
<li>
<NavLink to="/">Home</NavLink>
</li>
<li>
<NavLink to="/new/">New</NavLink>
</li>
</ul>
</nav>
<Route path="/" exact component={Home} />
<Route path="/new/" component={NewFundraiser} />
</div>
</Router>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment