How to use Reducers with useReducer hook in React

Daminda Dinesh Imaduwa Gamage
6 min readSep 20, 2023
Photo by Chris Scott on Unsplash

In a previous post, I talked about how to use Reducers in vanilla JavaScript and HTML projects. In that post, you learned that while the reducers are pure functions that you can use with State Management libraries such as, you can still use Reducers in other types of projects that do not use Redux. In this post, I am going to tell you how to use Reducers and the useReducer hook for state management in…

--

--