import React from 'react'; // import Comment from '../../components/Comment'; export default (props) => { return (
{/* */} { props.data[props.activeTab].map((comment, i) =>
{comment.body}
) }
); };