Skip to content

Instantly share code, notes, and snippets.

@pekkis
Last active October 21, 2015 12:14
Show Gist options
  • Save pekkis/535a276933a2f95b9f93 to your computer and use it in GitHub Desktop.
Save pekkis/535a276933a2f95b9f93 to your computer and use it in GitHub Desktop.
import { createHistory } from 'history';
let history = createHistory();
const routes = (
<Router history={history}>
<Route path="/" component={HelloWorldApp}>
<IndexRoute component={Index} />
<Route path="/hello/:name" component={Greeter}></Route>
</Route>
</Router>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment