#100DAYSOFCODE Day83
Review the React Hook(useReducer)
1: The basic way is similar like useState and basic Redux method which return the updated value.
const countReducer = (state, newState) => newState
function Counter({initialCount = 0, step = 1}) {
const [count, se...
haorong.hashnode.dev2 min read