1import "../shared/webpack-shim.ts"; 2 3import { createRoot } from "react-dom/client"; 4import { App } from "./ui/App.tsx"; 5 6const container = document.getElementById("app"); 7const root = createRoot(container!); 8root.render(<App />);