import { App } from "./Components.js"; import { render } from "./SuiWeb.js"; /** * Initializes the board. */ function initialize() { render([App], document.querySelector("#game")); } initialize();