File size: 271 Bytes
85784d8 |
1 2 3 4 5 6 7 8 9 10 11 |
/**
*
* @param {string} textContent
* @param {() => void} action
*/
function Button(textContent, action) {
const button = document.createElement("button");
button.textContent = textContent;
button.addEventListener("click", action);
return button;
} |