import { USER_GET_LIST } from "../constants/ActionTypes";
|
|
|
|
const UserActions = {
|
|
getList: () => ({
|
|
type: USER_GET_LIST,
|
|
}),
|
|
};
|
|
|
|
export default UserActions;
|