BarBar288's picture
Upload 122 files
27127dd 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 />);