mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
import t from 'store/types';
|
|
|
|
export const setCreditNotesTableState = (queries) => {
|
|
return {
|
|
type: t.CREDIT_NOTES_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const resetCreditNotesTableState = () => {
|
|
return {
|
|
type: t.CREDIT_NOTES_TABLE_STATE_RESET,
|
|
};
|
|
};
|