web-apps/apps/common/mobile/lib/store/users.js
2020-08-31 20:31:05 +03:00

11 lines
239 B
JavaScript

import * as actionTypes from './actions/actions'
const usersReducer = (state = [], action) => {
if (action.type == actionTypes.RESET_USERS) {
return [...action.payload];
}
return state;
};
export default usersReducer