Skip to content

Instantly share code, notes, and snippets.

@burkeholland
Created September 28, 2021 16:26
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 burkeholland/1b9aed83b0a7a618f0eaf70ad2774380 to your computer and use it in GitHub Desktop.
Save burkeholland/1b9aed83b0a7a618f0eaf70ad2774380 to your computer and use it in GitHub Desktop.
Router Example
<Router>
<div className="main">
<Nav user={user} />
<div className="container">
<Switch>
<Route path="/" exact>
<Home />
</Route>
<Route path="/edit/:id?">
<Edit />
</Route>
<Route path="/admin">
<Admin />
</Route>
<Route path="/post/:id" children={<Post user={user} />} />
</Switch>
</div>
</div>
</Router>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment