Created
October 5, 2015 06:39
-
-
Save anonymous/01a78e3fccfb55f31def to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { IndexRoute, Route } from 'react-router' | |
import RootComponent from './containers/RootComponent' | |
import BaseLayout from './components/BaseLayout' | |
import AuthenticatedLayout from './components/AuthenticatedLayout' | |
import Auth from './containers/Auth' | |
import Dashboard from './containers/Dashboard' | |
import Inbox from './containers/Inbox' | |
import Schedule from './containers/Schedule' | |
export default ( | |
<Route path='/' component={BaseLayout}> | |
<Route path='auth' component={Auth} /> | |
<Route path='' component={AuthenticatedLayout}> | |
<IndexRoute component={Dashboard} /> | |
<Route path='Inbox' component={Inbox} /> | |
</Route> | |
</Route> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment