mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-18 15:33:21 +01:00
16 lines
449 B
JavaScript
16 lines
449 B
JavaScript
import { compose } from 'redux'
|
|
import { connect } from 'react-redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { accountsWithSendEtherInfoSelector } from '../../../../selectors'
|
|
import ViewContact from './my-accounts.component'
|
|
|
|
const mapStateToProps = (state) => {
|
|
const myAccounts = accountsWithSendEtherInfoSelector(state)
|
|
|
|
return {
|
|
myAccounts,
|
|
}
|
|
}
|
|
|
|
export default compose(withRouter, connect(mapStateToProps))(ViewContact)
|