5-action-dispatch
function* fetchProducts(dispatch) {
const products = yield call(Api.fetch, '/products');
dispatch({ type: 'PRODUCTS_RECEIVED', products })
}function* fetchProducts() {
const products = yield call(Api.fetch, '/products');
// dispatch 이펙트를 생성하고 yield
yield put({ type: 'PRODUCT_RECEIVED', products })
}Last updated
Was this helpful?