Files: 06ba928e6dae6f3bb75720b2d3deee46ebb1dd18 / app / todos / routes.js
248 bytesRaw
1 | import React from 'react' |
2 | import { Route, IndexRoute } from 'react-router' |
3 | |
4 | import IndexContainer from './containers/index' |
5 | |
6 | export default function (store) { |
7 | return <Route path="todos"> |
8 | <IndexRoute component={IndexContainer} /> |
9 | </Route> |
10 | } |
11 |
Built with git-ssb-web