import { Controller } from "https://unpkg.com/@hotwired/stimulus/dist/stimulus.js"; import { gameState } from "./gamestate.js"; export default class extends Controller { startGame(ev) { console.log("Start game"); gameState.clearChoices(); } }