Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created May 9, 2019 10:01
Show Gist options
  • Save amandeepmittal/2ab576a5e68a1b93dd55d08b8266fc4c to your computer and use it in GitHub Desktop.
Save amandeepmittal/2ab576a5e68a1b93dd55d08b8266fc4c to your computer and use it in GitHub Desktop.
//App.js
// ...
import Posts from "./components/Posts"
function App() {
return (
<Router>
<div>
<nav style={{ margin: 10 }}>
<NavLink to='/' exact activeClassName='active'>
Home
</NavLink>
<NavLink to='/about' activeClassName='active'>
About
</NavLink>
<NavLink to='/posts' activeClassName='active'>
Posts
</NavLink>
</nav>
<Route path='/' exact component={Home} />
<Route path='/about' component={About} />
<Route path='/posts' component={Posts} />
</div>
</Router>
)
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment