Refactored job line edit modal to use redux so that it can be an independent form. Created general modals reducer to manage all modals.
This commit is contained in:
@@ -3,6 +3,8 @@ import { all, call } from "redux-saga/effects";
|
||||
import { userSagas } from "./user/user.sagas";
|
||||
import { messagingSagas } from "./messaging/messaging.sagas";
|
||||
import { emailSagas } from "./email/email.sagas";
|
||||
import { modalsSagas } from "./modals/modals.sagas";
|
||||
export default function* rootSaga() {
|
||||
yield all([call(userSagas), call(messagingSagas), call(emailSagas)]);
|
||||
yield all([call(userSagas), call(messagingSagas), call(emailSagas),
|
||||
call(modalsSagas)]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user