tiagoenriquez's picture
Upload 49 files
85784d8 verified
/**
*
* @param {HTMLButtonElement[]} buttons
* @returns {HTMLDivElement}
*/
function Buttons(buttons) {
const container = document.createElement("div");
container.className = "buttons";
buttons.forEach((button) => {
container.appendChild(button);
});
return container;
}