summaryrefslogtreecommitdiff
path: root/app/client/index.jsx
diff options
context:
space:
mode:
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>