/* 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`

Counter

${value}

`; }; /* RENDER */ render ( Counter, document.getElementById ( 'app' ) );