revite/src/context/index.tsx

29 lines
822 B
TypeScript
Raw Normal View History

2021-06-23 14:52:33 +01:00
import { BrowserRouter as Router } from "react-router-dom";
2021-07-05 11:23:23 +01:00
import State from "../redux/State";
import { Children } from "../types/Preact";
import Locale from "./Locale";
import Theme from "./Theme";
2021-07-05 11:23:23 +01:00
import Intermediate from "./intermediate/Intermediate";
import Client from "./revoltjs/RevoltClient";
/**
* This component provides all of the application's context layers.
* @param param0 Provided children
*/
export default function Context({ children }: { children: Children }) {
2021-07-05 11:25:20 +01:00
return (
2021-09-10 18:03:06 -04:00
<Router basename={import.meta.env.BASE_URL}>
2021-07-05 11:25:20 +01:00
<State>
2021-12-16 22:05:31 +00:00
<Locale>
<Intermediate>
<Client>{children}</Client>
</Intermediate>
</Locale>
<Theme />
2021-07-05 11:25:20 +01:00
</State>
</Router>
);
}