import {neverland as $, render, html, useState} from 'neverland'; const Counter = $((initialState) => { const [count, setCount] = useState(initialState); return html` Count: ${count} setCount(count + 1)}>Increment setCount(count - 1)}>Decrement }); render(document.body, html`