mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
import t from 'store/types';
|
|
|
|
export const setEstimatesTableState = (queries) => {
|
|
return {
|
|
type: t.ESTIMATES_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const setSelectedRowsItems = () => {};
|