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