diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-17 13:24:41 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-17 13:24:41 +0200 |
| commit | 3043751ba11a38ebd9f03416fd7f4600dae41f1a (patch) | |
| tree | bef7fdef47182814a10c73b2f6799c46e8462b58 /app/client/index.jsx | |
| parent | f3f84961eb9ddf3dacfb3e4bf5c56504303c048f (diff) | |
production routing shit
Diffstat (limited to 'app/client/index.jsx')
| -rw-r--r-- | app/client/index.jsx | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/app/client/index.jsx b/app/client/index.jsx index 33e4148..0b0ed05 100644 --- a/app/client/index.jsx +++ b/app/client/index.jsx @@ -19,20 +19,25 @@ const module_list = Object.keys(modules).map(name => { ) }) +const ModuleRouter = () => { + return ( + <Switch></Switch> + ) +} + const app = ( <Provider store={store}> <Auth.Gate> <BrowserRouter> - <div> - <Switch> - <Route exact path='/' component={Dashboard} /> - <Route exact path='/system/' component={System} /> - <Route exact path='/dashboard/' component={Dashboard} /> - {module_list} - <Route exact path='/logout/' component={Auth.Logout} /> - <Redirect from='/login/' to='/' /> - <Redirect from='/signup/' to='/' /> - </Switch> + <div className='everybody'> + <Route path='/' children={(props) => <div>{console.log(props.location.pathname)}</div>} /> + <Route exact path='/system' component={System} /> + <Route exact path='/dashboard' component={Dashboard} /> + <Route exact path='/logout' component={Auth.Logout} /> + <Route exact path='/login' component={() => { console.log('pziss'); <Redirect to='/' /> }} /> + <Route exact path='/signup' component={() => { console.log('pziss'); <Redirect to='/' /> }} /> + {module_list} + <Route exact path='/' component={Dashboard} /> <Route path='/' component={Header} /> </div> </BrowserRouter> |
