class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` DataViz Pro Dashboard Analytics Reports Settings `; } } customElements.define('custom-header', CustomHeader);