Trend Micro Service Status

Services
Status
Impact
${icon}${text}
`; } const renderProductList = () => { const markup = productList.sort((a,b)=> a.name.localeCompare(b.name)).map(product=> generateProductMarkup(product)).join(''); if(!productTableElement) return; productTableElement.innerHTML = ''; productTableElement.insertAdjacentHTML('beforeend', markup); } renderProductList();