mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
19 lines
489 B
TypeScript
19 lines
489 B
TypeScript
// @ts-nocheck
|
|
import { connect } from 'react-redux';
|
|
import {
|
|
APAgingSummaryFilterDrawerSelector,
|
|
} from '@/store/financialStatement/financialStatements.selectors';
|
|
|
|
export default (mapState) => {
|
|
const mapStateToProps = (state, props) => {
|
|
const mapped = {
|
|
APAgingSummaryFilterDrawer: APAgingSummaryFilterDrawerSelector(
|
|
state,
|
|
props,
|
|
),
|
|
};
|
|
return mapState ? mapState(mapped, state, props) : mapped;
|
|
};
|
|
return connect(mapStateToProps);
|
|
};
|