mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
refactoring: customers landing list. refactoring: vendors landing list. refactoring: manual journals landing list.
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
import t from 'store/types';
|
|
|
|
export const setManualJournalsTableState = (queries) => {
|
|
return {
|
|
type: t.MANUAL_JOURNALS_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|