import React from 'react'; import PropTypes from 'prop-types'; import RevisionBody from '../Page/RevisionBody'; /** * Wrapper component for Page/RevisionBody */ const CommentPreview = (props) => { return (
); }; CommentPreview.propTypes = { html: PropTypes.string, }; export default CommentPreview;