Skip to content

Instantly share code, notes, and snippets.

Created October 5, 2015 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/01a78e3fccfb55f31def to your computer and use it in GitHub Desktop.
Save anonymous/01a78e3fccfb55f31def to your computer and use it in GitHub Desktop.
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