summaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/routes/index.js b/src/routes/index.js
index 6b3a454d..6257017e 100644
--- a/src/routes/index.js
+++ b/src/routes/index.js
@@ -3,15 +3,15 @@ import {BrowserRouter, Redirect, Route, Switch} from "react-router-dom";
import {userIsLoggedIn} from "../auth/index";
import Home from "../pages/Home";
import NotFound from "../pages/NotFound";
-import Projects from "../pages/Projects";
+import Simulations from "../pages/Simulations";
const Routes = () => (
<BrowserRouter>
<Switch>
<Route exact path="/" component={Home}/>
- <Route exact path="/projects" render={() => (
+ <Route exact path="/simulations" render={() => (
userIsLoggedIn() ? (
- <Projects/>
+ <Simulations/>
) : (
<Redirect to="/"/>
)