Skip to content

Instantly share code, notes, and snippets.

@vesic
Last active August 13, 2016 09:30
Show Gist options
  • Save vesic/e2c932c4a0224b0a559c748996151b0b to your computer and use it in GitHub Desktop.
Save vesic/e2c932c4a0224b0a559c748996151b0b to your computer and use it in GitHub Desktop.
react router setup
import { Router, Route, hashHistory } from 'react-router';
ReactDOM.render((
<Router history={hashHistory}>
<Route path="/" component={App}>
</Route>
</Router>
), document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment