sdy

update route

...@@ -9,6 +9,7 @@ import OTOChat from "./OTOChat/OTOChatContainer"; ...@@ -9,6 +9,7 @@ import OTOChat from "./OTOChat/OTOChatContainer";
9 const LoggedInRoutes = () => ( 9 const LoggedInRoutes = () => (
10 <> 10 <>
11 <Route exact path="/" component={RoomList} /> 11 <Route exact path="/" component={RoomList} />
12 + <Route path="/:roomname" component={Home} />
12 <Route path="/OTOChat" component={OTOChat} /> 13 <Route path="/OTOChat" component={OTOChat} />
13 <Route path="/RandomChat" component={Home} /> 14 <Route path="/RandomChat" component={Home} />
14 <Route path="/CategoryChat" component={Home} /> 15 <Route path="/CategoryChat" component={Home} />
......