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