carbike
Version:
This is a test package
29 lines (18 loc) • 551 B
JavaScript
//class TestComponent extends HTMLElement {
//connectedCallback() {
// innerHTML = `<h1>Hello component123</h1>`;
// }
//}
//function testComponent()
//{
// return customElements.define("test-component",TestComponent);
//}
//module.exports = testComponent();
class TestComponent extends HTMLElement {
connectedCallback() {
this.innerHTML = `<h1>Hello component123</h1>`;
}
}
export function testComponent() {
return customElements.define("test-component", TestComponent);
}