September 2017
Intermediate to advanced
120 pages
2h 47m
English
You learned to share application state by pushing the state to parent components and passing props from parent to child. In this way, the application logic becomes more predictable and you can manage even complex interfaces. However, under some conditions, this model can get in the way. The Redux[17] library provides an additional way to manage an application’s state.
Here are a few cases where you might want to consider Redux:
You want to move components around and leave the state management code as it is.
You want to access state independently of where the element sits in the hierarchy.
You want to add elements without affecting the state.
You want advanced debugging abilities, because your state ...
Read now
Unlock full access