import DeleteButton from './DeleteButton'; import { Link } from 'react-router-dom'; import React from 'react'; const Comment = props => { const comment = props.comment; const show = props.currentUser && props.currentUser.username === comment.author.username; return (

{comment.body}

{comment.author.username}   {comment.author.username} {new Date(comment.createdAt).toDateString()}
); }; export default Comment;