jakubrada's picture
Update src/index.js
39e0464 verified
raw
history blame contribute delete
205 Bytes
import { Game } from "./game.js";
console.log(process.env.HF_KEY);
// start the game when DOM is loaded
document.addEventListener("DOMContentLoaded", () => {
const game = new Game();
game.run();
});