import React, { Fragment } from 'react'; import PropTypes from 'prop-types'; import UpdateDialog from './UpdateDialog'; import UnsavedChangesDialog from './UnsavedChangesDialog'; import InputsErrorsDialog from './InputsErrorsDialog'; import DeleteDialog from './DeleteDialog'; const Dialogs = ({ updateDialog, unsavedChangesDialog, inputsErrorsDialog, deleteDialog, }) => ( ); Dialogs.propTypes = { updateDialog: PropTypes.shape({}).isRequired, unsavedChangesDialog: PropTypes.shape({}).isRequired, inputsErrorsDialog: PropTypes.shape({}).isRequired, deleteDialog: PropTypes.shape({}).isRequired, }; export default Dialogs;