export let value = 0;
export function increment() {
value++;
}
export function decrement() {
value--;
export function reset() {
value = 0;