727e2e4Interactive WALNUTS sampling of a 2D banana targetJeremy 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);