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

Store Counter

{() => state.value}

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