February 14, 2022 https://www.youtube.com/watch?v=MwvwrYHBs34

npm i redux-saga

1. generator

function* generator() {
}
export default function* rootSaga() {
	yeild all([
		call(user),
		call(post),
	]);
};

Untitled

Untitled