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.

18 lines
489 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'
import Contacts from './routes/contacts'
import Network from './routes/network'
8 years ago
export default () => (
<App>
<Switch>
<Route path='/contacts' component={Contacts} />
<Route path='/network' component={Network} />
<Route path='/' component={Activity} />
8 years ago
</Switch>
</App>
)