Files: b0260714125b1a814ed76eaca838d164ae23101d / app / todos / routes.js
214 bytesRaw
1 | import React from 'react' |
2 | import { Route, IndexRoute } from 'react-router' |
3 | |
4 | import IndexContainer from './containers/index' |
5 | |
6 | export default <Route path="todos"> |
7 | <IndexRoute component={IndexContainer} /> |
8 | </Route> |
9 |
Built with git-ssb-web