September 2018
Beginner
156 pages
3h 28m
English
Store is a central data object from which the application state can be derived. The components in the application subscribe to the changes in the store's state and update the view.
Here's how the data flows in Redux:

The user performs an operation, such as submitting a form or clicking a button, thus dispatching an action to the store. The application defines various actions that the user can perform and reducer is coded so that it can handle these actions and update the state of the entity. The state of various entities in the application is maintained in one central location: the store. For example, the application could have various ...
Read now
Unlock full access