mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import { toggleCustomersTransactionsFilterDrawer } from '@/store/financialStatement/financialStatements.actions';
|
|
|
|
|
|
const mapActionsToProps = (dispatch) => ({
|
|
toggleCustomersTransactionsFilterDrawer: (toggle) =>
|
|
dispatch(toggleCustomersTransactionsFilterDrawer(toggle)),
|
|
});
|
|
|
|
export default connect(null, mapActionsToProps);
|