import { html, WebComponent } from "../../src/index.js"; export class HelloWorld extends WebComponent { static props = { myName: "World", }; get template() { return html`
Hello ${this.props.myName}
`; } } customElements.define("hello-world", HelloWorld);