mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
c1e3c229bc
See [`import/order`](https://eslint.org/docs/rules/import/order) for more information. This change enables `import/order` and fixes the issues raised by the rule.
19 lines
456 B
JavaScript
19 lines
456 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)
|