UnivAi / src /main.tsx
oceddyyy's picture
Upload 59 files
13a0af9 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 />);