Added app reducer, fixed package issues, begun camera screen updates
This commit is contained in:
@@ -1,19 +1,7 @@
|
||||
import { all, call } from "redux-saga/effects";
|
||||
|
||||
import { appSagas } from "./app/app.sagas";
|
||||
import { userSagas } from "./user/user.sagas";
|
||||
// import { messagingSagas } from "./messaging/messaging.sagas";
|
||||
// import { emailSagas } from "./email/email.sagas";
|
||||
// import { modalsSagas } from "./modals/modals.sagas";
|
||||
// import { applicationSagas } from "./application/application.sagas";
|
||||
// import { techSagas } from "./tech/tech.sagas";
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([
|
||||
call(userSagas),
|
||||
// call(messagingSagas),
|
||||
// call(emailSagas),
|
||||
// call(modalsSagas),
|
||||
// call(applicationSagas),
|
||||
// call(techSagas),
|
||||
]);
|
||||
yield all([call(userSagas), call(appSagas)]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user