class CustomNavigationBar extends HTMLElement { constructor() { super() const shadowRoot = this.attachShadow({mode: 'open'}) shadowRoot.innerHTML = ` ` } } customElements.define('navigation-bar', CustomNavigationBar)