Files
bigcapital/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.js
2021-09-21 17:13:53 +02:00

13 lines
431 B
JavaScript

import { connect } from 'react-redux';
import { getTrialBalanceSheetFilterDrawer } from 'store/financialStatement/financialStatements.selectors';
export default (mapState) => {
const mapStateToProps = (state, props) => {
const mapped = {
trialBalanceDrawerFilter: getTrialBalanceSheetFilterDrawer(state),
};
return mapState ? mapState(mapped, state, props) : mapped;
};
return connect(mapStateToProps);
};