// @flow import React from 'react'; import { Modal } from 'modal/modal'; type Props = { onCommentAcknowledge: () => void, closeModal: () => void, }; class ModalCommentAcknowledgement extends React.PureComponent { render() { const { closeModal, onCommentAcknowledge } = this.props; function onAbortedOrConfirmed() { onCommentAcknowledge(); closeModal(); } return (

{__('A few things to know before making your comment:')}

); } } export default ModalCommentAcknowledgement;