tablejohn/static/main.ts

6 lines
139 B
TypeScript

function main() {
alert("Hello world!");
}
const BUTTON = document.getElementById("button");
BUTTON?.addEventListener("click", main);