InterviewSolution
Saved Bookmarks
| 1. |
What is Redux in React js? |
|
Answer» Redux in React is the official React binding for Redux which allows the COMPONENTS in React to read data from a Redux Store, and dispatch Actions to the Store for updating the data. The PURPOSE of Redux is to help applications scale well by providing means to MANAGE the state via a UNIDIRECTIONAL data FLOW model. |
|