import React, { useDispatch } from 'reactn' const incr = (count, action) => count + action.value const decr = (count, action) => count - action.value const MyComponent = () => { const increment = useDispatch(incr, 'count') const decrement = useDispatch(decr, 'count') return (
) } export default MyComponent