add live game UI with board rendering, timers, and SAN move list

This commit is contained in:
2026-02-27 12:27:02 +01:00
parent 0c3ef7da4a
commit 36727cdb24
5 changed files with 853 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
import { PlayApp } from "./play/app.js";
function main() {
const app = new PlayApp();
window.playApp = app;
app.installSocket();
}
main();