import Telescope from 'meteor/nova:lib'; import React, { PropTypes, Component } from 'react'; class CommentsNode extends Component { renderComment(comment) { 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) : ""}
) } }; CommentsNode.propTypes = { comment: React.PropTypes.object.isRequired, // the current comment currentUser: React.PropTypes.object, // the current user } module.exports = CommentsNode;