Spaces:
Configuration error
Configuration error
File size: 181 Bytes
f5058c8 |
1 2 3 4 5 6 7 |
import { createContext } from "react";
import type { VLMContextValue } from "../types/vlm";
const VLMContext = createContext<VLMContextValue | null>(null);
export { VLMContext };
|