Introduction
Get an introduction of actions and action creators.
In Redux, changes to the global state are encapsulated in actions
, rather than done directly. This approach allows us to understand the cause of changes and control the flow more easily.
Actions are triggered by events like keypresses or mouse clicks, timers, or network events. The receiver of action could be a middleware
or a reducer
.
Get hands-on with 1400+ tech skills courses.