|
|
@ -3,8 +3,8 @@ import { Switch, Redirect, Route, useLocation } from "react-router-dom"; |
|
|
|
|
|
|
|
|
import { useAppSelector } from "app/hooks"; |
|
|
import { useAppSelector } from "app/hooks"; |
|
|
import ConnectPage from "components/ConnectPage"; |
|
|
import ConnectPage from "components/ConnectPage"; |
|
|
import Header from "components/Header"; |
|
|
|
|
|
import Footer from "components/Footer"; |
|
|
import Footer from "components/Footer"; |
|
|
|
|
|
import Menu from "components/Menu"; |
|
|
import { roomListPath } from "modules/room/paths"; |
|
|
import { roomListPath } from "modules/room/paths"; |
|
|
import RoomsPane from "modules/room/RoomsPane"; |
|
|
import RoomsPane from "modules/room/RoomsPane"; |
|
|
import { userListPath } from "modules/user/paths"; |
|
|
import { userListPath } from "modules/user/paths"; |
|
|
@ -51,7 +51,7 @@ const SolsticeApp = () => ( |
|
|
</Route> |
|
|
</Route> |
|
|
<Route path="/"> |
|
|
<Route path="/"> |
|
|
<ConnectedApp> |
|
|
<ConnectedApp> |
|
|
<Header /> |
|
|
|
|
|
|
|
|
<Menu /> |
|
|
<MainPane /> |
|
|
<MainPane /> |
|
|
<Footer /> |
|
|
<Footer /> |
|
|
</ConnectedApp> |
|
|
</ConnectedApp> |
|
|
|