DEV Community

Discussion on: Abstracting with react hooks on LSD

Collapse
 
metammodern profile image
Buniamin Shabanov

Redux makes you write a lot of unnecessary code. Changing one action or adding new action leads to change of several files.

Thread Thread
 
patheticgeek profile image
Pathetic Geek

Try redux toolkit, it isn't the case anymore

Thread Thread
 
metammodern profile image
Buniamin Shabanov

Ok, I'll check it out. Thanks

Thread Thread
 
mindplay profile image
Rasmus Schultz

Redux-zero might be worth a look too... familiar stores, actions, middleware, support for Redux devtools with time-travel, etc. - just no reducers, making it quite a lot simpler. 🙂

Thread Thread
 
metammodern profile image
Buniamin Shabanov

Thank you)

Thread Thread
 
patheticgeek profile image
Pathetic Geek

It still has mapDispatchToProps and stuff which I find a bit ugly. But yeah, still way better than taditional redux.