Skip to content

Article from Daniel Tchangang

Reduce redux boilerplate with redux-toolkit

April 20, 2020Daniel Tchangang4 min read

Reduce redux boilerplate with redux-toolkit

You're looking for an easier way to write your reducer, aren't you ? When writing plain redux, you have to define an action, an actionCreator and a reducer to update the store of your app. The reducer is in most cases a big switch to handle all the actions dispatched by actionCreators in your app…

Continue reading →