class NavBarTemplate extends HTMLElement { constructor() { super(); this.innerHTML = ` `; } } if ('customElements' in window) { customElements.define('navbar-template', NavBarTemplate); }