adding reducer and saga for employee

This commit is contained in:
jfrye122
2023-04-13 13:34:20 -04:00
parent 35573417c4
commit f8a0992efe
4 changed files with 26 additions and 6 deletions

View File

@@ -2,7 +2,8 @@ import { all, call } from "redux-saga/effects";
import { appSagas } from "./app/app.sagas";
import { photosSagas } from "./photos/photos.sagas";
import { userSagas } from "./user/user.sagas";
import { employeeSagas } from "./employee/employee.sagas";
export default function* rootSaga() {
yield all([call(userSagas), call(appSagas), call(photosSagas)]);
yield all([call(userSagas), call(appSagas), call(photosSagas), call(employeeSagas)]);
}