mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
15 lines
275 B
JavaScript
15 lines
275 B
JavaScript
import t from 'store/types';
|
|
|
|
export const setEstimatesTableState = (queries) => {
|
|
return {
|
|
type: t.ESTIMATES_TABLE_STATE_SET,
|
|
payload: { queries },
|
|
};
|
|
};
|
|
|
|
export const resetEstimatesTableState = () => {
|
|
return {
|
|
type: t.ESTIMATES_TABLE_STATE_RESET,
|
|
};
|
|
}
|