Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created October 9, 2018 08:40
Show Gist options
  • Save amandeepmittal/2faf71c5325ffc8d61f440b6b0064c18 to your computer and use it in GitHub Desktop.
Save amandeepmittal/2faf71c5325ffc8d61f440b6b0064c18 to your computer and use it in GitHub Desktop.
import React from 'react';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import Books from './pages/Books';
import Detail from './pages/Detail';
import NoMatch from './pages/NoMatch';
import Nav from './components/Nav';
const App = () => (
<Router>
<div>
<Nav />
<Switch>
<Route exact path="/" component={Books} />
<Route exact path="/books" component={Books} />
<Route exact path="/books/:id" component={Detail} />
<Route component={NoMatch} />
</Switch>
</div>
</Router>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment