mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
import { connect } from 'react-redux'
|
|
import ConfirmRemoveAccount from './confirm-remove-account.component'
|
|
|
|
const { hideModal, removeAccount } = require('../../../actions')
|
|
|
|
const mapStateToProps = state => {
|
|
return {
|
|
identity: state.appState.modal.modalState.props.identity,
|
|
network: state.metamask.network,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
return {
|
|
hideModal: () => dispatch(hideModal()),
|
|
removeAccount: (address) => dispatch(removeAccount(address)),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ConfirmRemoveAccount)
|