Files: 5ab375550cf7474b579151d16179f24150cc6758 / app / routes.js
493 bytesRaw
1 | const React = require('react') |
2 | const { Route, IndexRoute } = require('react-router') |
3 | |
4 | const App = require('app/containers/app') |
5 | const Landing = require('app/containers/landing') |
6 | const Todos = require('app/containers/todos') |
7 | const NoMatch = require('app/containers/no-match') |
8 | |
9 | const routes = ( |
10 | <Route path='/' component={App}> |
11 | <IndexRoute component={Landing} /> |
12 | <Route path='todos' component={Todos} /> |
13 | <Route path="*" component={NoMatch} /> |
14 | </Route> |
15 | ) |
16 | |
17 | module.exports = routes |
18 |
Built with git-ssb-web