* create warehouse * edit warehouse changes * Update: linted and formatted * add warehouse button * user access changes * basic table component changes * Updated: eslint errors * basic table component changes * update: linted * add New Product form api integrate * add new product changes * textarea changes * Linted code * Fix: image preview placeholder Co-authored-by: [Diksha] <[diksha39511@gmail.com]> Co-authored-by: Llewellyn Dsouza <lledsouza2209@gmail.com>
15 lines
408 B
JavaScript
15 lines
408 B
JavaScript
import { all } from 'redux-saga/effects';
|
|
import AuthSaga from './Auth';
|
|
import WarehouseSaga from './Warehouse';
|
|
import UsersSaga from './Users';
|
|
import ProductSaga from './Product';
|
|
import RolesSaga from './Roles';
|
|
|
|
export default function* rootSaga() {
|
|
yield all([...AuthSaga]);
|
|
yield all([...WarehouseSaga]);
|
|
yield all([...UsersSaga]);
|
|
yield all([...ProductSaga]);
|
|
yield all([...RolesSaga]);
|
|
}
|