mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
14 lines
409 B
TypeScript
14 lines
409 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import {
|
|
setReceiptsTableState,
|
|
resetReceiptsTableState,
|
|
} from '@/store/receipts/receipts.actions';
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
setReceiptsTableState: (queries) => dispatch(setReceiptsTableState(queries)),
|
|
resetReceiptsTableState: () => dispatch(resetReceiptsTableState()),
|
|
});
|
|
|
|
export default connect(null, mapDispatchToProps);
|