InterviewSolution
Saved Bookmarks
| 1. |
Explain the typical data flow in an application made using React and Redux (Redux Lifecycle for an application). |
|
Answer» The typical data flow in Redux starts with a call back from the User Interface COMPONENT which dispatches an ACTION with a payload. After that, the reducers INTERCEPT and receive the DISPATCHED actions, generating a new application state. After that, the actions are propagated down through a hierarchy of COMPONENTS from the Redux store. |
|