rootSaga.js 169 Bytes
Newer Older
Giang Tran committed
1 2 3 4 5 6
import {call, all} from 'redux-saga/effects';
import {watchUpdateUser} from './userSaga';

export default function* rootSaga() {
  yield all([call(watchUpdateUser)]);
}