Abdullahrasheed45's picture
Create VLMContext.ts
f5058c8 verified
raw
history blame contribute delete
181 Bytes
import { createContext } from "react";
import type { VLMContextValue } from "../types/vlm";
const VLMContext = createContext<VLMContextValue | null>(null);
export { VLMContext };