import * as React from "react"; import { createRoot } from "react-dom/client"; import { createScumMapFixture, scumMapContext, scumMapPage } from "./fixtures/scum-map"; import { loadPluginPageBundle } from "../utils/pluginPageBundles"; import { applyThemePalette } from "../theme/tokens"; import "../theme/base.css"; globalThis.__PLUGIN_PAGE_REACT__ = React; applyThemePalette("mecha-black"); const MapPage = await loadPluginPageBundle(scumMapPage); const { actions } = createScumMapFixture(); createRoot(document.getElementById("root")!).render(

SCUM 地图交互验证

固定测试数据,用于检查回放、缩放和详情。

);