Skip to content

Instantly share code, notes, and snippets.

@dcalixto
Created October 23, 2018 22:11
Show Gist options
  • Save dcalixto/5e739782b81634d70cb6b075b39afbf2 to your computer and use it in GitHub Desktop.
Save dcalixto/5e739782b81634d70cb6b075b39afbf2 to your computer and use it in GitHub Desktop.
comment
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