mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
18 lines
462 B
JavaScript
18 lines
462 B
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props';
|
|
import RejectTransactionsModal from './reject-transactions.component';
|
|
|
|
const mapStateToProps = (_, ownProps) => {
|
|
const { unapprovedTxCount } = ownProps;
|
|
|
|
return {
|
|
unapprovedTxCount,
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(mapStateToProps),
|
|
)(RejectTransactionsModal);
|