InterviewSolution
| 1. |
What is Redux in React Native and give important components of Redux used in React Native app ? |
|
Answer» Redux is a predictable state container for JavaScript apps. It helps write applications that run in different environments. This means the entire data flow of the app is handled WITHIN a SINGLE container while persisting previous state. Actions: are payloads of information that send data from your application to your store. They are the only source of information for the store. This means if any state change is necessary the change required will be DISPATCHED through the actions. |
|