Do I use React-Redux Hooks API or connect?


Today is the day I start learning about Redux. 

Because I started using useContext and useReducer hooks, I think it makes my learning Redux easier. 

However, I have come across two different implementation of Redux. One using the the traditional connect, and another using the useSelector hook. So which do I implement in my current React App?

Well, it looks like I have to learn and implement both of them in separate apps to gain some experience in both so that I can understand the differences between the two and which one works for me better.

So, the plan now is to start learning and implementing the traditional method with connect first. Now off I go to coding my next simple app with Redux!

Comments