Skip to content

Instantly share code, notes, and snippets.

@ac12644
Created January 30, 2022 14:35
Show Gist options
  • Save ac12644/8248991de7d29446d4c25fe1631b7e4f to your computer and use it in GitHub Desktop.
Save ac12644/8248991de7d29446d4c25fe1631b7e4f to your computer and use it in GitHub Desktop.
<Router>
<div>
<AppBar position="static" color="default">
<Toolbar>
<Typography variant="h6" color="inherit">
<NavLink className="nav-link" to="/">Home</NavLink>
</Typography>
<NavLink className="nav-link" to="/new/">New Fundraiser</NavLink>
</Toolbar>
</AppBar>
<Route path="/" exact component={Index} />
<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