mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
19 lines
470 B
JavaScript
19 lines
470 B
JavaScript
|
import ViewContact from './my-accounts.component'
|
||
|
import { compose } from 'recompose'
|
||
|
import { connect } from 'react-redux'
|
||
|
import { withRouter } from 'react-router-dom'
|
||
|
import { accountsWithSendEtherInfoSelector } from '../../../../selectors/selectors'
|
||
|
|
||
|
const mapStateToProps = (state,) => {
|
||
|
const myAccounts = accountsWithSendEtherInfoSelector(state)
|
||
|
|
||
|
return {
|
||
|
myAccounts,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default compose(
|
||
|
withRouter,
|
||
|
connect(mapStateToProps)
|
||
|
)(ViewContact)
|