Abdullahrasheed45 commited on
Commit
f5058c8
·
verified ·
1 Parent(s): cae69e1

Create VLMContext.ts

Browse files
Files changed (1) hide show
  1. src/context/VLMContext.ts +6 -0
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 };