File size: 454 Bytes
85784d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * 
 * @param {string} label 
 * @param {string} id 
 * @param {string} className 
 * @param {number} rows 
 * @param {number} columns 
 * @returns {HTMLDivElement}
 */
function PerguntasContainer(label, id, className, rows, columns) {
    const container = document.createElement("div");
    container.className = className;
    container.appendChild(Label(label, id));
    container.appendChild(TextArea(id, rows, columns));
    return container;
}