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