InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about the Redux Saga? |
|
Answer» Redux Saga is a middleware LIBRARY that can be useful for allowing a Redux store to interact with the resources outside of itself in an asynchronous manner, for example, making HTTP REQUESTS to external services, accessing browser storage, executing Input/Output operations and many more. These operations are also called side effects. |
|