/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
import React from 'react'; import { Router, Route, Link, browserHistory } from 'react-router'; const Links = () => <nav> </nav> const App = () => { return ( <Router history={ browserHistory }> <Route path="02-hash-vs-browserHistory" component={Home}></Route> <Route path="02-hash-vs-browserHistory/about" component={About}></Route> <Route path="02-hash-vs-browserHistory/contact" component={Contact}></Route> </Router> ) }; export default App;