maitrang04's picture
Upload 91 files
d125a03 verified
raw
history blame contribute delete
157 Bytes
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);