efcsydney/efcsydney-roster

View on GitHub
client/src/sagas.js

Summary

Maintainability
A
0 mins
Test Coverage
import { all, call } from 'redux-saga/effects';
import coreSagas from 'modules/core/sagas';
import resourceSagas from 'resource/sagas';

export default function* rootSaga() {
  yield all([call(coreSagas), call(resourceSagas)]);
}