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