All files / src/redux rootSagas.js

0% Statements 0/8
100% Branches 0/0
0% Functions 0/1
0% Lines 0/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                                     
import { all } from 'redux-saga/effects';
import { patientSagas } from './patients';
import { questionnarieSagas } from './questionnarie';
import { patientVisitSagas } from './PatientVisit';
import { assignProListSagas } from './AssignProList';
import { commonDataSagas } from './Common';
import { proProgressSagas } from './ProProgress';
 
export default function* sagas() {
    yield all([
        ...patientSagas,
        ...questionnarieSagas,
        ...patientVisitSagas,
        ...assignProListSagas,
        ...commonDataSagas,
        ...proProgressSagas
    ]);
}