InterviewSolution
Saved Bookmarks
| 1. |
What do you understand by an action in Redux's architecture? |
|
Answer» In the Redux architecture, actions are NOTHING but the plain JavaScript objects which contain a type field. They can be thought of as an event that is used to DESCRIBE SOMETHING which has HAPPENED in the application. Actions contain only a tiny bit of information that is required to mention what has happened. |
|