Feat: List roles page (WMS-40) (#55)

* feat: list roles page with api integration
* Update: added dispatch on first load
This commit is contained in:
Sathishkumar Krishnan
2022-02-11 22:55:54 +05:30
committed by GitHub
parent ff9ea9c71c
commit 4c2df3fd2c
6 changed files with 186 additions and 30 deletions

View File

@@ -2,9 +2,11 @@ import { all } from 'redux-saga/effects';
import AuthSaga from './Auth';
import WarehouseSaga from './Warehouse';
import UsersSaga from './Users';
import RolesSaga from './Roles';
export default function* rootSaga() {
yield all([...AuthSaga]);
yield all([...WarehouseSaga]);
yield all([...UsersSaga]);
yield all([...RolesSaga]);
}