warehouse api integration

This commit is contained in:
[Diksha]
2022-02-02 14:45:41 +05:30
parent a99feeea7e
commit 6f99ba5541
8 changed files with 154 additions and 101 deletions

View File

@@ -1,6 +1,10 @@
import { all } from 'redux-saga/effects';
import AuthSaga from './Auth';
import WarehouseSaga from './Warehouse';
export default function* rootSaga() {
yield all([...AuthSaga]);
yield all([...WarehouseSaga]);
}