Spaces:
Running
Running
| 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> | |
| ); | |