/* IMPORT */ import {$, html, render} from 'voby'; /* MAIN */ const Counter = (): JSX.Element => { const value = $(0); const increment = () => value ( prev => prev + 1 ); const decrement = () => value ( prev => prev - 1 ); return html`
${value}
`; }; /* RENDER */ render ( Counter, document.getElementById ( 'app' ) );