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