mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
18 lines
472 B
JavaScript
18 lines
472 B
JavaScript
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);
|
|
};
|