InterviewSolution
Saved Bookmarks
| 1. |
Give an example of the usage of Actions in Redux's architecture. |
|
Answer» An EXAMPLE of the usage of ACTIONS in Redux's architecture is GIVEN below: CONST addingTodoAction = { type: 'ADD', payload: 'Do-homework'} |
|