class NameFieldComponent extends HTMLElement { constructor() { super(); this.root = this.attachShadow({mode: "open"}); this.root.innerHTML = ` first name: | last name: `; } } window.customElements.define("name-field", NameFieldComponent);