Skip to content

Instantly share code, notes, and snippets.

@amcdnl
Created November 12, 2018 19:18
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 amcdnl/1176ac762ffd9f3de1243092dd46b8a6 to your computer and use it in GitHub Desktop.
Save amcdnl/1176ac762ffd9f3de1243092dd46b8a6 to your computer and use it in GitHub Desktop.
<Router>
<div>
<ul>
<li>
<Link to="/">Home</Link>
</li>
<li>
<Link to="/about">About</Link>
</li>
<li>
<Link to="/topics">Topics</Link>
</li>
</ul>
<hr />
<Route exact path="/" component={Home} />
<Route path="/about" component={About} />
<Route path="/topics" component={Topics} />
</div>
</Router>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment