useCounter
Basic counter with utility functions.
Demo
Count: 0
Basic Usage
js
import { useCounter } from 'comuse-core'
const { count, inc, dec, set, reset } = useCounter()
Usage with options
js
import { useCounter } from 'comuse-core'
const { count, inc, dec, set, reset } = useCounter(1, { min: 0, max: 16 })