mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
15
src/store/Bills/bills.actions.js
Normal file
15
src/store/Bills/bills.actions.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import t from 'store/types';
|
||||
|
||||
export const setBillsTableState = (queries) => {
|
||||
return {
|
||||
type: t.BILLS_TABLE_STATE_SET,
|
||||
payload: { queries },
|
||||
};
|
||||
};
|
||||
|
||||
export const resetBillsTableState = () => {
|
||||
return {
|
||||
type: t.BILLS_TABLE_STATE_RESET,
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user