15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
import { all, call } from "redux-saga/effects";
|
|
//import DmsActionTypes from "./dms.types";
|
|
|
|
export function* onCalculateScheduleLoad() {
|
|
// yield takeLatest(
|
|
// DmsActionTypes.CALCULATE_SCHEDULE_LOAD,
|
|
// calculateScheduleLoad
|
|
// );
|
|
}
|
|
export function* calculateScheduleLoad({ payload: end }) {}
|
|
|
|
export function* dmsSagas() {
|
|
yield all([call()]);
|
|
}
|