Files
pedwfrontend/store/myCases/action.js
T

19 lines
425 B
JavaScript

export const myCasesActionTypes = {
GETMYCASES: "GETMYCASES",
SETMYCASES: "SETMYCASES",
UPDATEMYCASES: "UPDATEMYCASES",
};
export const getMyCasesObj = () => (dispatch) => {
return dispatch({
type: myCasesActionTypes.GETMYCASES,
});
};
export const setMyCases = (myCases) => (dispatch) => {
return dispatch({
type: myCasesActionTypes.SETMYCASES,
myCases: myCases,
});
};