SubhojitGhimire
initial commit
d2226ad
raw
history blame contribute delete
219 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App.jsx";
ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);