git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 0a19ff71e90207bdc5e6b22d5470c11617f9f7b0

Files: 0a19ff71e90207bdc5e6b22d5470c11617f9f7b0 / app / routes.js

277 bytesRaw
1const { Route } = require('react-router')
2
3const App = require('app/containers/app')
4const TodoList = require('app/containers/todo-list')
5
6const routes = (
7 <Route path='/' component={App}>
8 <Route path='todos' component={TodoList} />
9 </Route>
10)
11
12module.exports = routes
13

Built with git-ssb-web