mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
23 lines
601 B
JavaScript
23 lines
601 B
JavaScript
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)
|