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.
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
|
|
|
import Modal from 'Components/Modal/Modal';
|
|
|
|
import { sizes } from 'Helpers/Props';
|
|
|
|
import EditDelayProfileModalContentConnector from './EditDelayProfileModalContentConnector';
|
|
|
|
|
|
|
|
function EditDelayProfileModal({ isOpen, onModalClose, ...otherProps }) {
|
|
|
|
return (
|
|
|
|
<Modal
|
|
|
|
size={sizes.MEDIUM}
|
|
|
|
isOpen={isOpen}
|
|
|
|
onModalClose={onModalClose}
|
|
|
|
>
|
|
|
|
<EditDelayProfileModalContentConnector
|
|
|
|
{...otherProps}
|
|
|
|
onModalClose={onModalClose}
|
|
|
|
/>
|
|
|
|
</Modal>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
EditDelayProfileModal.propTypes = {
|
|
|
|
isOpen: PropTypes.bool.isRequired,
|
|
|
|
onModalClose: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default EditDelayProfileModal;
|