This commit is contained in:
2025-03-02 17:15:58 +00:00
commit e4253e6de2
26 changed files with 1806 additions and 0 deletions

11
src/contexts/Contexts.tsx Normal file
View File

@@ -0,0 +1,11 @@
import type { ParentComponent } from "solid-js";
import { TwitchServiceContextProvider } from "./TwitchServiceContext.tsx";
import { UserContextProvider } from "./UserContext.tsx";
export const Contexts: ParentComponent = (props) => {
return (
<TwitchServiceContextProvider>
<UserContextProvider>{props.children}</UserContextProvider>
</TwitchServiceContextProvider>
);
};