const htmlToElement = html => {
consttemplate = window.document.createElement("template");
const trimmedHtml = html.trim(); // Never return a text node of whitespace as the resulttemplate.innerHTML = trimmedHtml;
returntemplate.content.firstChild;
};
export { htmlToElement };