File size: 367 Bytes
85784d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * 
 * @param {QuestoesContainer[]} questoesContainer 
 * @returns {HTMLDivElement}
 */
function QuestoesContainer(questoesContainer) {
    const container = document.createElement("div");
    container.className = "questoes";

    questoesContainer.forEach((questaoContainer) => {
        container.appendChild(questaoContainer);
    });

    return container;
}