FastVLMBoxes / src /main.tsx
Quazim0t0's picture
Upload 36 files
1a9c884 verified
raw
history blame contribute delete
349 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
import { VLMProvider } from "./context/VLMContext.tsx";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<VLMProvider>
<App />
</VLMProvider>
</React.StrictMode>,
);