diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-25 20:04:34 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-25 20:04:34 +0200 |
| commit | 28f4bd59314df8162548a1100b280bd256436eaa (patch) | |
| tree | 0f86102a076bfc1082b04f81aa7986bcba897a9a /app/client/index.jsx | |
| parent | e484781d56a04e37c93090c52ce4e3f2be404a33 (diff) | |
more static endpoints
Diffstat (limited to 'app/client/index.jsx')
| -rw-r--r-- | app/client/index.jsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/client/index.jsx b/app/client/index.jsx index a084306..45a1b94 100644 --- a/app/client/index.jsx +++ b/app/client/index.jsx @@ -14,9 +14,9 @@ const app = ( <Provider store={store}> <BrowserRouter> <div> - <Route path='/' component={Dashboard} /> - <Route path='/live/' component={LivePix2Pix} /> - <Route path='/dashboard/' component={Dashboard} /> + <Route exact path='/' component={Dashboard} /> + <Route exact path='/live/' component={LivePix2Pix} /> + <Route exact path='/dashboard/' component={Dashboard} /> <Header /> </div> </BrowserRouter> |
