Created
October 23, 2018 22:11
-
-
Save dcalixto/5e739782b81634d70cb6b075b39afbf2 to your computer and use it in GitHub Desktop.
comment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ( | |
<tr> | |
<td>{comment.comment}</td> | |
<td> | |
<Comments comments={comment.replies} /> | |
</td> | |
</tr> | |
); | |
} | |
} | |
export default Comment; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment