DEV Community

Discussion on: Explain Redux like I'm 5!

Collapse
 
omawhite profile image
Omar White

Hey Mark, can you elaborate on why you’re recommending the react-redux hooks as the default. What are the pro’s of that approach as opposed to wrapping components in connect.

Collapse
 
markerikson profile image
Mark Erikson

connect still works fine, and we're going to continue maintaining and supporting it indefinitely.

But, useSelector and useDispatch are shorter and easier to work with in many cases, and they definitely work better with TypeScript. There's less indirection, less code, and it's more obvious what's happening.

Hooks in general (and especially React-Redux hooks) do bring up a different set of tradeoffs, which I talked about in my post Thoughts on React Hooks, Redux, and Separation of Concerns and my ReactBoston 2019 talk on "Hooks, HOCs, and Tradeoffs". I'd encourage you to go through those.

Thread Thread
 
omawhite profile image
Omar White

Thanks for the links, that’s exactly what I was looking for. My team and I have been trying to understand the trade offs.