import { createContext } from "react"; type contextType = { nothing: undefined; }; export const context = createContext(undefined); export default function Provider({ children }: { children: React.ReactNode }) { return ( {children} ); }