Files
bigcapital/client/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.js

10 lines
343 B
JavaScript

import { connect } from 'react-redux';
import { toggleProfitLossFilterDrawer } from 'store/financialStatement/financialStatements.actions';
export const mapDispatchToProps = (dispatch) => ({
toggleProfitLossFilterDrawer: (toggle) =>
dispatch(toggleProfitLossFilterDrawer(toggle)),
});
export default connect(null, mapDispatchToProps);