Member-only story
Boost Your Productivity With the Redux Toolkit
Redux Toolkit is the official, opinionated, batteries-included toolset for efficient Redux development

Redux is an excellent tool for managing a global state for your applications. React fits incredibly well with front-end libraries, such as React, Vue, or Angular.
Redux comes with a cost, though — it’s tedious to set up and it has its fair share of boilerplate code.
The redux toolkit package solves some of the pain points the Redux library has — such as writing excessive boilerplate code.

The Redux Toolkit package is intended to be the standard way to write Redux logic. It was originally created to help address three common concerns about Redux.
- Configuring a Redux store is too complicated.
- I have to add a lot of packages to get Redux to do anything useful.
- Redux requires too much boilerplate code.