-
Notifications
You must be signed in to change notification settings - Fork 0
React Router
kitiya edited this page Feb 3, 2020
·
4 revisions
$ npm install react-router-dom
index.js file
import { Route, Link, BrowserRouter as Router, Switch } from 'react-router-dom'
const routing = (
<Router>
<Header />
<Switch>
<Route exact path="/" component={App} />
<Route path="/users" component={Users} />
<Route path="/contact" component={Contact} />
<Route component={Notfound} />
</Switch>
</Router>
)
ReactDOM.render(routing, document.getElementById('root'))