You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
323 B
12 lines
323 B
4 years ago
|
import { connect } from 'react-redux';
|
||
|
import { getSelectedIdentity } from '../../../selectors';
|
||
|
import SelectedAccount from './selected-account.component';
|
||
7 years ago
|
|
||
5 years ago
|
const mapStateToProps = (state) => {
|
||
7 years ago
|
return {
|
||
5 years ago
|
selectedIdentity: getSelectedIdentity(state),
|
||
4 years ago
|
};
|
||
|
};
|
||
7 years ago
|
|
||
4 years ago
|
export default connect(mapStateToProps)(SelectedAccount);
|