/ concept-collection / surfacefun-interactive
Sign in
concept-collection / surfacefun-interactive
12 lines · 392 BCodeBlameHistory
a65b3e2Interactive surfacefun mesh refinement (numbl project)Jeremy Magland 1import { StrictMode } from "react";
2import { createRoot } from "react-dom/client";
3// Import the bridge first so `window.setup` is defined before the host's
4// bootstrap calls it (it defers to DOMContentLoaded, after module scripts run).
5import "./bridge.js";
6import { App } from "./App.js";
8createRoot(document.getElementById("root")!).render(
9 <StrictMode>
10 <App />
11 </StrictMode>
12);
moveopenescclose