mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
16 lines
261 B
JavaScript
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,
|
|
};
|
|
};
|
|
|