Repository URL to install this package:
|
Version:
3.7.0 ▾
|
import { call, all } from 'redux-saga/effects';
import watchAb from './abSaga';
export function* loadAbSaga(options = {}) {
yield all([call(watchAb, options)]);
}