Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -8,10 +8,12 @@ import Main from "./MainPresenter"; | ... | @@ -8,10 +8,12 @@ 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 | import News from "./News"; |
11 | +import Chat from "./Chat/ChatContainer"; | ||
11 | 12 | ||
12 | const LoggedInRoutes = () => ( | 13 | const LoggedInRoutes = () => ( |
13 | <Switch> | 14 | <Switch> |
14 | <Route path="/roomlist" component={RoomList} /> | 15 | <Route path="/roomlist" component={RoomList} /> |
16 | + <Route path="/chat" component={Chat} /> | ||
15 | </Switch> | 17 | </Switch> |
16 | ); | 18 | ); |
17 | 19 | ... | ... |
-
Please register or login to post a comment