We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Instead of returning a dispatch method, return an object with methods for each action.
const [count, {increment}] = hook_model({ init: () => 0, increment: n => n+1, });
Both reducer hooks should be deprecated.