You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
505 B
19 lines
505 B
import { connect } from 'react-redux'
|
|
import { compose } from 'recompose'
|
|
import { withRouter } from 'react-router-dom'
|
|
import ConfirmTransaction from './confirm-transaction.component'
|
|
import { getTotalUnapprovedCount } from '../../../selectors'
|
|
|
|
const mapStateToProps = (state, props) => {
|
|
const { metamask: { send } } = state
|
|
|
|
return {
|
|
totalUnapprovedCount: getTotalUnapprovedCount(state),
|
|
send,
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps),
|
|
)(ConfirmTransaction)
|
|
|