File size: 216 Bytes
189ea42
19ba7fe
 
 
189ea42
19ba7fe
 
 
189ea42
1
2
3
4
5
6
7
8
9
10

class CustomHeader extends HTMLElement {
    connectedCallback() {
        this.attachShadow({ mode: 'open' });
        this.shadowRoot.innerHTML = ``;
    }
}

customElements.define('custom-header', CustomHeader);