import * as React from "react"; import { createRoot } from "react-dom/client"; import { PopupComponent } from "./PopupComponent"; import { waitFor } from "../../maze-utils/src"; import Config from "../config"; document.addEventListener("DOMContentLoaded", async () => { await waitFor(() => Config.isReady()); const root = createRoot(document.body); root.render(); })