The initial value of the count variable.
Options for handling of the counter. Can be either min/max bounds or a mod bound.
const { count, increment, decrement, setCount } = useCount();
increment(); // count goes up by 1
increment(10); // count goes up by 10
decrement(); // count goes down by 1
decrement(10); // count goes down by 10
setCount(100); // count set to 100
Provides a numeric state variable with
incrementanddecrementutility functions.