import React from 'react'; import PropTypes from 'prop-types'; import { Modal, ModalBody } from 'reactstrap'; import TermsPreviewWidget from '../terms-preview-widget'; import { gettext } from '../../utils/constants'; import SeahubModalHeader from '@/components/common/seahub-modal-header'; const propTypes = { title: PropTypes.string, content: PropTypes.string, onClosePreviewDialog: PropTypes.func.isRequired, }; class TermsPreviewDialog extends React.Component { toggle = () => { this.props.onClosePreviewDialog(); }; render() { let { title = gettext('Terms'), content } = this.props; return ( {title} ); } } TermsPreviewDialog.propTypes = propTypes; export default TermsPreviewDialog;