Added a small mental arithmatic game
All checks were successful
/ publish (push) Successful in 1m30s

This commit is contained in:
Leon Mika 2026-01-15 22:51:48 +11:00
parent ca67aadac0
commit 70a782d0e4
6 changed files with 268 additions and 0 deletions

View file

@ -0,0 +1,8 @@
import { Application } from "https://unpkg.com/@hotwired/stimulus/dist/stimulus.js";
import { WelcomeController } from "./welcome.js"
import { GameController } from "./game.js"
window.Stimulus = Application.start();
window.Stimulus.register('welcome', WelcomeController);
window.Stimulus.register('game', GameController);