mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
16 lines
463 B
JavaScript
16 lines
463 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
setCashflowAccountsTableState,
|
|
resetCashflowAccountsTableState,
|
|
} from 'store/CashflowAccounts/CashflowAccounts.actions';
|
|
|
|
const mapActionsToProps = (dispatch) => ({
|
|
setCashflowAccountsTableState: (queries) =>
|
|
dispatch(setCashflowAccountsTableState(queries)),
|
|
|
|
resetCashflowAccountsTableState: () =>
|
|
dispatch(resetCashflowAccountsTableState()),
|
|
});
|
|
|
|
export default connect(null, mapActionsToProps);
|