12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
import { WebComponent } from "../../src/index.js";
|
|
|
|
export class HelloWorld extends WebComponent {
|
|
static props = {
|
|
myName: "World",
|
|
};
|
|
get template() {
|
|
return `<p>Hello ${this.props.myName}</p>`;
|
|
}
|
|
}
|
|
|
|
customElements.define("hello-world", HelloWorld);
|