1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 05:15:02 +00:00
mon-entreprise/routes.js

15 lines
480 B
JavaScript
Raw Normal View History

2016-08-10 11:39:01 +02:00
import React from 'react'
import { Route, IndexRoute } from 'react-router'
import Layout from './containers/Layout'
import Explorer from './containers/Explorer'
import Analyse from './containers/Analyse'
export default (
<Route path="/" component={Layout}>
<Route path="analyse" component={Analyse} />
<Route path="variables" component={Explorer} />
<IndexRoute component={Explorer} />
<Route path="*" component={() => <h2>On vous a perdu !</h2>} />
</Route>
)