Files
bigcapital/packages/webapp/src/store/Estimate/estimates.actions.tsx
2023-02-03 01:02:31 +02:00

16 lines
292 B
TypeScript

// @ts-nocheck
import t from '@/store/types';
export const setEstimatesTableState = (queries) => {
return {
type: t.ESTIMATES_TABLE_STATE_SET,
payload: { queries },
};
};
export const resetEstimatesTableState = () => {
return {
type: t.ESTIMATES_TABLE_STATE_RESET,
};
}