You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
326 B

8 years ago
/* eslint flowtype-errors/show-errors: 0 */
import React from 'react'
import { Switch, Route } from 'react-router'
import App from './routes/app'
import Activity from './routes/activity'
8 years ago
const routes = () => (
8 years ago
<App>
<Switch>
<Route path="/" component={Activity} />
8 years ago
</Switch>
</App>
)
export default routes