2021-04-21 13:08:54 +00:00
|
|
|
import Layout from "./components/Layout"
|
2021-04-21 16:00:21 +00:00
|
|
|
import { BrowserRouter } from "react-router-dom"
|
2021-04-26 16:36:41 +00:00
|
|
|
import GlobalTheme from "./components/GlobalTheme"
|
|
|
|
import GlobalServer from "./components/GlobalServer"
|
|
|
|
import GlobalUser from "./components/GlobalUser"
|
2021-04-26 20:08:52 +00:00
|
|
|
import PageSwitcher from "./PageSwitcher"
|
2021-04-20 22:09:13 +00:00
|
|
|
|
2021-04-20 22:07:39 +00:00
|
|
|
|
2021-04-23 00:18:06 +00:00
|
|
|
/**
|
|
|
|
* The main component of the webapp, the root of the render tree, what is displayed when the web page is visited.
|
|
|
|
*
|
|
|
|
* @returns {JSX.Element}
|
|
|
|
* @constructor
|
|
|
|
*/
|
2021-04-20 22:23:35 +00:00
|
|
|
export default function App() {
|
2021-04-20 22:09:13 +00:00
|
|
|
return (
|
2021-04-26 16:36:41 +00:00
|
|
|
<GlobalServer>
|
|
|
|
<GlobalUser>
|
|
|
|
<GlobalTheme>
|
|
|
|
<BrowserRouter>
|
2021-04-26 20:08:52 +00:00
|
|
|
<Layout>
|
|
|
|
<PageSwitcher/>
|
|
|
|
</Layout>
|
2021-04-26 16:36:41 +00:00
|
|
|
</BrowserRouter>
|
|
|
|
</GlobalTheme>
|
|
|
|
</GlobalUser>
|
|
|
|
</GlobalServer>
|
2021-04-20 22:09:13 +00:00
|
|
|
)
|
2021-04-20 22:07:39 +00:00
|
|
|
}
|