mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
import { connect } from 'react-redux';
|
|
import { getSelectedIdentity } from '../../../selectors';
|
|
import SelectedAccount from './selected-account.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
selectedIdentity: getSelectedIdentity(state),
|
|
};
|
|
};
|
|
|
|
export default connect(mapStateToProps)(SelectedAccount);
|