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.
18 lines
599 B
18 lines
599 B
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props';
|
|
import { getSelectedIdentity } from '../../../../selectors';
|
|
import EditApprovalPermission from './edit-approval-permission.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const modalStateProps = state.appState.modal.modalState.props || {};
|
|
return {
|
|
selectedIdentity: getSelectedIdentity(state),
|
|
...modalStateProps,
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(mapStateToProps),
|
|
)(EditApprovalPermission);
|
|
|