(count);
for (let i = 0; i < rungs.length; i++) {
rungs[i] = ;
}
this.rungs.val?.replaceChildren(...rungs);
}
build() {
return frag(null,
h("h1", {}, "Ladder"),
h("button", {onclick: () => this.counter.val--}, "-"),
h("span", {}, this.counter),
h("button", {onclick: () => this.counter.val++}, "+"),
h("div", {saveTo: this.rungs}),
);
}
}
const app = new App();
bootstrap(app, "app");