UnivAI / src /main.tsx
oceddyyy's picture
Upload 70 files
a381c35 verified
raw
history blame contribute delete
178 Bytes
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);