diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/client/index.jsx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/app/client/index.jsx b/app/client/index.jsx index a1efa58..55e3325 100644 --- a/app/client/index.jsx +++ b/app/client/index.jsx @@ -23,14 +23,12 @@ const app = ( <Provider store={store}> <Auth.Gate> <BrowserRouter> - <div> - <Route exact path='/' component={Dashboard} /> - <Route exact path='/system/' component={System} /> - <Route exact path='/dashboard/' component={Dashboard} /> - <Route exact path='/logout/' component={Auth.Logout} /> - {module_list} - <Header /> - </div> + <Route exact path='/' component={Dashboard} /> + <Route exact path='/system/' component={System} /> + <Route exact path='/dashboard/' component={Dashboard} /> + <Route exact path='/logout/' component={Auth.Logout} /> + {module_list} + <Route exact path='/' component={Header} /> </BrowserRouter> <AudioPlayer /> </Auth.Gate> |
