Abdullahrasheed45 commited on
Commit
adbfb62
·
verified ·
1 Parent(s): cf90335

Create main.tsx

Browse files
Files changed (1) hide show
  1. src/main.tsx +13 -0
src/main.tsx ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import React from "react";
2
+ import ReactDOM from "react-dom/client";
3
+ import App from "./App.tsx";
4
+ import "./index.css";
5
+ import { VLMProvider } from "./context/VLMContext.tsx";
6
+
7
+ ReactDOM.createRoot(document.getElementById("root")!).render(
8
+ <React.StrictMode>
9
+ <VLMProvider>
10
+ <App />
11
+ </VLMProvider>
12
+ </React.StrictMode>,
13
+ );