1
2
3
4
5
6
7
8
9
10
11
12
13
import { denoUndefined } from "https://esm.town/v/nbbaier/denoUndefined";
if (denoUndefined()) {
class HelloComponent extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.innerHTML = `<h1>hello</h1>`;
}
}
customElements.define("hello-component", HelloComponent);
}