import React, { Component } from "react"; import Comments from "./comments"; class Comment extends Component { constructor(props) { super(props); this.state = {}; } render() { const { comment } = this.props; return ( {comment.comment} ); } } export default Comment;