📜  redux sagas - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:03.507000             🧑  作者: Mango

代码示例1
Redux Saga is a middleware library used to allow a Redux store
to interact with resources outside of itself asynchronously. 

This includes making HTTP requests to external services, 
accessing browser storage, and executing I/O operations. 

These operations are also known as side effects. 

Redux Saga helps to organize these side effects in a way that
is easier to manage.