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.
22 lines
601 B
22 lines
601 B
import { connect } from 'react-redux'
|
|
import { compose } from 'recompose'
|
|
import ConfirmRemoveAccount from './confirm-remove-account.component'
|
|
import withModalProps from '../../../higher-order-components/with-modal-props'
|
|
import { removeAccount } from '../../../actions'
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
network: state.metamask.network,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
removeAccount: (address) => dispatch(removeAccount(address)),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(ConfirmRemoveAccount)
|
|
|