class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Undefined๐ ํ ๊ด๋ฆฌ์ ์์ ๋ฐฐํฌ ๊ด๋ฆฌ ์์ธ ์์ ์ ์ํ ๋ฐ์ดํฐ Get Started `; } } customElements.define('custom-header', CustomHeader);