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

15 lines
281 B
TypeScript

// @ts-nocheck
import t from '@/store/types';
export const setVendorsTableState = (queries) => {
return {
type: t.VENDORS_TABLE_STATE_SET,
payload: { queries },
};
}
export const resetVendorsTableState = () => {
return {
type: t.VENDORS_TABLE_STATE_RESET,
}
}