wadood's picture
added cleaner react view
9bfb26f
raw
history blame contribute delete
300 Bytes
import React from "react";
import ReactDOM from "react-dom/client"; // important for React 18
import SelectionApp from "./SelectionApp";
const root = ReactDOM.createRoot(document.getElementById("root") as HTMLElement);
root.render(
<React.StrictMode>
<SelectionApp />
</React.StrictMode>
);