static-cms/src/routes/routes.js
Mathias Biilmann Christensen c60d8ba706 Initial commit
2016-02-25 00:45:56 -08:00

13 lines
366 B
JavaScript

import React from 'react';
import { Router, Route, IndexRoute, browserHistory } from 'react-router';
import App from '../containers/App';
import DashboardPage from '../containers/DashboardPage';
export default () => (
<Router history={browserHistory}>
<Route path="/" component={App}>
<IndexRoute component={DashboardPage}/>
</Route>
</Router>
);