sourav-das's picture
Upload folder using huggingface_hub
7dfae77 verified
raw
history blame contribute delete
230 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);