Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -6,6 +6,7 @@ import About from "./About"; | ... | @@ -6,6 +6,7 @@ import About from "./About"; |
6 | import RoomList from "./Room/RoomContainer"; | 6 | import RoomList from "./Room/RoomContainer"; |
7 | import Main from "./MainPresenter"; | 7 | import Main from "./MainPresenter"; |
8 | import Forum from "./Forum/ForumPresenter"; | 8 | import Forum from "./Forum/ForumPresenter"; |
9 | +import Features from "./Features"; | ||
9 | 10 | ||
10 | const LoggedInRoutes = () => ( | 11 | const LoggedInRoutes = () => ( |
11 | <Switch> | 12 | <Switch> |
... | @@ -19,7 +20,7 @@ const LoggedOutRoutes = () => ( | ... | @@ -19,7 +20,7 @@ const LoggedOutRoutes = () => ( |
19 | <Route path="/about" component={About} /> | 20 | <Route path="/about" component={About} /> |
20 | <Route path="/auth" component={Auth} /> | 21 | <Route path="/auth" component={Auth} /> |
21 | <Route path="/forum" component={Forum} /> | 22 | <Route path="/forum" component={Forum} /> |
22 | - <Route path="/features" component={Main} /> | 23 | + <Route path="/features" component={Features} /> |
23 | <Route path="/support" component={Main} /> | 24 | <Route path="/support" component={Main} /> |
24 | </Switch> | 25 | </Switch> |
25 | ); | 26 | ); | ... | ... |
-
Please register or login to post a comment