Files
bigcapital/src/store/Bills/bills.actions.js
2021-09-21 17:13:53 +02:00

16 lines
261 B
JavaScript

import t from 'store/types';
export const setBillsTableState = (queries) => {
return {
type: t.BILLS_TABLE_STATE_SET,
payload: { queries },
};
};
export const resetBillsTableState = () => {
return {
type: t.BILLS_TABLE_STATE_RESET,
};
};