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.
23 lines
580 B
23 lines
580 B
import { connect } from 'react-redux';
|
|
import { hideModal } from '../../../../store/actions';
|
|
import { getSelectedIdentity } from '../../../../selectors';
|
|
import AccountModalContainer from './account-modal-container.component';
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
selectedIdentity: ownProps.selectedIdentity || getSelectedIdentity(state),
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
hideModal: () => {
|
|
dispatch(hideModal());
|
|
},
|
|
};
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps,
|
|
)(AccountModalContainer);
|
|
|