/* IMPORT */ import {render, store} from 'voby'; /* MAIN */ const Counter = (): JSX.Element => { const state = store ({ value: 0 }); const increment = () => state.value += 1; const decrement = () => state.value -= 1; return ( <>
{() => state.value}
> ); }; /* RENDER */ render (