mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
import t from 'store/types';
|
|
|
|
export const setVendorsCreditNoteTableState = (queries) => {
|
|
return {
|
|
type: t.VENDORS_CREDIT_NOTE_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const resetVendorsCreditNoteTableState = () => {
|
|
return {
|
|
type: t.VENDORS_CREDIT_NOTE_TABLE_STATE_RESET,
|
|
};
|
|
};
|