physix / frontend /src /main.tsx
Pratyush-01's picture
Upload folder using huggingface_hub
0e24aff verified
import React from "react";
import ReactDOM from "react-dom/client";
import { App } from "@/App";
import "@/styles/index.css";
const rootElement = document.getElementById("root");
if (!rootElement) {
throw new Error("Root element #root is missing in index.html.");
}
ReactDOM.createRoot(rootElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);