prasunsrivastava
Added the app files with the fist version.
bd9a582
raw
history blame
335 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import "./index.css";
import App from "./App";
const root = ReactDOM.createRoot(
document.getElementById("root") as HTMLElement
);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// Add an empty export to make this file a module
export {};