Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -7,6 +7,7 @@ import RoomList from "./Room/RoomContainer"; | ... | @@ -7,6 +7,7 @@ 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 | import Features from "./Features"; |
10 | +import News from "./News"; | ||
10 | 11 | ||
11 | const LoggedInRoutes = () => ( | 12 | const LoggedInRoutes = () => ( |
12 | <Switch> | 13 | <Switch> |
... | @@ -21,6 +22,7 @@ const LoggedOutRoutes = () => ( | ... | @@ -21,6 +22,7 @@ const LoggedOutRoutes = () => ( |
21 | <Route path="/auth" component={Auth} /> | 22 | <Route path="/auth" component={Auth} /> |
22 | <Route path="/forum" component={Forum} /> | 23 | <Route path="/forum" component={Forum} /> |
23 | <Route path="/features" component={Features} /> | 24 | <Route path="/features" component={Features} /> |
25 | + <Route path="/news" component={News} /> | ||
24 | <Route path="/support" component={Main} /> | 26 | <Route path="/support" component={Main} /> |
25 | </Switch> | 27 | </Switch> |
26 | ); | 28 | ); | ... | ... |
-
Please register or login to post a comment