Files
bigcapital/client/src/store/customers/customers.actions.js
2021-09-15 16:31:58 +02:00

17 lines
317 B
JavaScript

import t from 'store/types';
/**
* Sets the customers table state.
*/
export const setCustomersTableState = (queries) => {
return {
type: t.CUSTOMERS_TABLE_STATE_SET,
payload: { queries },
};
};
export const resetCustomersTableState = () => {
return {
type: t.CUSTOMERS_TABLE_STATE_RESET,
};
}