import React from 'react'; import { Link } from 'react-router-dom'; const CommentIndexItem = ({ comment, author }) => (
{author.fname} {author.lname} {' '} {comment.body}
); export default CommentIndexItem;