fazeel007's picture
initial commit
7c012de
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 />);