mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 21:00:13 +01:00
19 lines
466 B
JavaScript
19 lines
466 B
JavaScript
import ViewContact from './my-accounts.component'
|
|
import { compose } from 'redux'
|
|
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)
|