Create VLMContext.ts
Browse files
src/context/VLMContext.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { createContext } from "react";
|
| 2 |
+
import type { VLMContextValue } from "../types/vlm";
|
| 3 |
+
|
| 4 |
+
const VLMContext = createContext<VLMContextValue | null>(null);
|
| 5 |
+
|
| 6 |
+
export { VLMContext };
|