import React from 'react'; import PropTypes from 'prop-types'; import styles from './FakeComment.css'; import { Icon } from 'plugin-api/beta/client/components/ui'; import { CommentTimestamp } from 'plugin-api/beta/client/components'; import { t } from 'plugin-api/beta/client/services'; export const FakeComment = ({ username, created_at, body }) => (
{username}
{body}
); FakeComment.propTypes = { username: PropTypes.string.isRequired, created_at: PropTypes.string.isRequired, body: PropTypes.string.isRequired, };