boardgame-phaser/packages/onitama-game/src/main.tsx

12 lines
177 B
TypeScript
Raw Normal View History

import { GameUI } from "boardgame-phaser";
import "./style.css";
2026-04-07 16:29:21 +08:00
import App from "@/ui/App";
const ui = new GameUI({
container: "ui-root",
root: <App />,
2026-04-07 16:29:21 +08:00
});
ui.mount();