// @ts-check import { WebComponent } from "./WebComponent.mjs"; export class HelloWorld extends WebComponent { name = "World"; emotion = "excited"; static get observedAttributes() { return ["name", "emotion"]; } get template() { return `

Hello ${this.name}${ this.emotion === 'sad' ? '. 😭' : '! 🙌' }

` } }