import Comment from './Comment'; import React from 'react'; const CommentList = props => { return (
{ props.comments.map(comment => { return ( ); }) }
); }; export default CommentList;