revite/src/context/index.tsx

28 lines
823 B
TypeScript
Raw Normal View History

import State from "../redux/State";
import { Children } from "../types/Preact";
2021-06-23 09:52:33 -04:00
import { BrowserRouter as Router } from "react-router-dom";
2021-06-19 13:46:05 -04:00
import Intermediate from './intermediate/Intermediate';
2021-06-23 09:52:33 -04:00
import Client from './revoltjs/RevoltClient';
import Voice from "./Voice";
import Locale from "./Locale";
import Theme from "./Theme";
export default function Context({ children }: { children: Children }) {
return (
2021-06-23 09:52:33 -04:00
<Router>
<State>
<Locale>
<Intermediate>
2021-06-23 09:52:33 -04:00
<Client>
<Voice>
<Theme>{children}</Theme>
</Voice>
</Client>
</Intermediate>
</Locale>
</State>
2021-06-23 09:52:33 -04:00
</Router>
);
}