class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Chromatic Explore Create Generate About `; } } customElements.define('custom-header', CustomHeader);