1import { createContext } from "react";
2import { StreamplaceStore } from "../streamplace-store/streamplace-store";
3
4type StreamplaceContextType = {
5 store: StreamplaceStore;
6};
7
8export const StreamplaceContext = createContext<StreamplaceContextType | null>(
9 null,
10);