// @ts-check import { WebComponent } from "./WebComponent.mjs"; const emotionPostfix = { excited: "!", sad: " :(", }; const emotionColor = { excited: "green", sad: "red", }; /** * Component to greet a person * and display sentiment toward web components */ export class HelloWorld extends WebComponent { name = "World"; emotion = "excited"; static get observedAttributes() { return ["name", "emotion"]; } get template() { return `