Files
bigcapital/packages/webapp/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx
2023-02-03 01:02:31 +02:00

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);
};