Spaces:
Configuration error
Configuration error
Create main.tsx
Browse files- 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 |
+
);
|