Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -5,6 +5,7 @@ import Auth from "./Auth/AuthContainer"; | ... | @@ -5,6 +5,7 @@ import Auth from "./Auth/AuthContainer"; |
5 | import About from "./About"; | 5 | 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 | 9 | ||
9 | const LoggedInRoutes = () => ( | 10 | const LoggedInRoutes = () => ( |
10 | <Switch> | 11 | <Switch> |
... | @@ -17,7 +18,7 @@ const LoggedOutRoutes = () => ( | ... | @@ -17,7 +18,7 @@ const LoggedOutRoutes = () => ( |
17 | <Route exact path="/" component={Main} /> | 18 | <Route exact path="/" component={Main} /> |
18 | <Route path="/about" component={About} /> | 19 | <Route path="/about" component={About} /> |
19 | <Route path="/auth" component={Auth} /> | 20 | <Route path="/auth" component={Auth} /> |
20 | - <Route path="/forum" component={Main} /> | 21 | + <Route path="/forum" component={Forum} /> |
21 | <Route path="/features" component={Main} /> | 22 | <Route path="/features" component={Main} /> |
22 | <Route path="/support" component={Main} /> | 23 | <Route path="/support" component={Main} /> |
23 | </Switch> | 24 | </Switch> | ... | ... |
-
Please register or login to post a comment