class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` DualView Delight `; } } customElements.define('custom-header', CustomHeader);