import React from 'react'; import styles from 'coral-embed-stream/src/components/Comment.css'; import AuthorName from 'coral-plugin-author-name/AuthorName'; import Content from 'coral-plugin-commentcontent/CommentContent'; import PubDate from 'coral-plugin-pubdate/PubDate'; import {ReplyButton} from 'coral-plugin-replies'; import I18n from 'coral-framework/modules/i18n/i18n'; import translations from '../translations'; const lang = new I18n(translations); class FakeComment extends React.Component { constructor (props) { super(props); } render () { const {username, created_at, body} = this.props; return (

{}} parentCommentId={'commentID'} currentUserId={{}} banned={false} />
); } } export default FakeComment;