File size: 265 Bytes
85784d8 |
1 2 3 4 5 6 7 8 9 10 11 |
/**
*
* @param {string} textContent
* @returns {HTMLHeadingElement}
*/
function ErroComponent(textContent) {
const component = document.createElement("h1");
component.className = "erro";
component.textContent = textContent;
return component;
} |