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