August 2017
Beginner
374 pages
10h 41m
English
By now, we might be wondering what exactly Redux is (besides a set of principles and some helper functions). Essentially, Redux brings actions and reducers together. It provides a store, which contains the application state and provides some functions to do the following:
According to the official documentation of Redux, Redux is a predictable state container for JavaScript apps
.
The state container (store) is the heart of Redux: It contains your application state and does not allow external changes. Redux only allows changes through actions, which get passed to ...
Read now
Unlock full access