init
This commit is contained in:
11
src/contexts/Contexts.tsx
Normal file
11
src/contexts/Contexts.tsx
Normal 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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user