Bitty is a web component that requires JavaScript which is not available on this page. You'll need to switch to a browser that has it enabled to check things out.
<bitty-7-0 data-connect="AddSubtract"> <div> Value: <span data-receive="add subtract">0</span> </div> <button data-send="add">Add 1</button> <button data-send="subtract">Subtract 1</button> </bitty-7-0>
window.AddSubtract = class { #counter = 0; add(_, el) { this.#counter += 1; el.innerHTML = this.#counter; } subtract(_, el) { this.#counter -= 1; el.innerHTML = this.#counter; } };