Jofthomas's picture
Add demo files (#1)
d5c6d34 verified
import { createContext } from "react";
import type { VLMContextValue } from "../types/vlm";
const VLMContext = createContext<VLMContextValue | null>(null);
export { VLMContext };