InterviewSolution
| 1. |
What Is The Typical Flow Of Data In A React + Redux App? |
|
Answer» Call-back from UI component dispatches an action with a payload, these DISPATCHED ACTIONS are intercepted and received by the reducers. this INTERCEPTION will generate a new application state. from here the actions will be propagated down through a hierarchy of COMPONENTS from Redux store. The below diagram depicts the entity structure of a redux+react SETUP. Call-back from UI component dispatches an action with a payload, these dispatched actions are intercepted and received by the reducers. this interception will generate a new application state. from here the actions will be propagated down through a hierarchy of components from Redux store. The below diagram depicts the entity structure of a redux+react setup. |
|