summaryrefslogtreecommitdiff
path: root/app/client/index.jsx
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-25 20:04:34 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-25 20:04:34 +0200
commit28f4bd59314df8162548a1100b280bd256436eaa (patch)
tree0f86102a076bfc1082b04f81aa7986bcba897a9a /app/client/index.jsx
parente484781d56a04e37c93090c52ce4e3f2be404a33 (diff)
more static endpoints
Diffstat (limited to 'app/client/index.jsx')
-rw-r--r--app/client/index.jsx6
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>