mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-11 20:27:12 +01:00
76a2a9bb8b
* @metamask/eslint-config@5.0.0 * Update eslintrc and prettierrc * yarn lint:fix
16 lines
458 B
JavaScript
16 lines
458 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);
|