class HelloSayerComponent extends HTMLElement { connectedCallback() { const shadowRoot = this.attachShadow({mode: "open"}); shadowRoot.innerHTML = `
Hello!
`; } } window.customElements.define("hello-sayer", HelloSayerComponent);