Added photos reducer.

This commit is contained in:
Patrick Fic
2020-11-12 15:47:47 -08:00
parent e2e6f0b510
commit e31f621a8f
12 changed files with 192 additions and 78 deletions

View File

@@ -1,7 +1,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";
export default function* rootSaga() {
yield all([call(userSagas), call(appSagas)]);
yield all([call(userSagas), call(appSagas), call(photosSagas)]);
}