import {render} from 'react-dom';
import {Router, Route, IndexRoute, browserHistory} from 'react-router'

import Content from 'content';
import Todo from 'todo';
import Week from 'week';
import Exercise from 'exercise';
import NotFound from 'notFound';


export const routes = (
    <Router history={browserHistory}>
        <Route path='/' component={Content}>
            <IndexRoute component={Week}/>
            <Route path='day/:id' component={Todo}/>
            <Route path='day/:id/exercise/:num' component={Exercise}/>
        </Route>
        <Route path='*' component={NotFound}/>
    </Router>
);