import React, { PropTypes, Component } from 'react'; class CommentNode extends Component { renderComment(comment) { ({CommentItem} = Telescope.components); return ( ) } renderChildren(children) { return (
{children.map(comment => )}
) } render() { const comment = this.props.comment; const children = this.props.comment.childrenResults; return (
{this.renderComment(comment)} {children ? this.renderChildren(children) : ""}
) } }; CommentNode.propTypes = { comment: React.PropTypes.object.isRequired, // the current comment currentUser: React.PropTypes.object, // the current user } module.exports = CommentNode;