const CommentItem = React.createClass({ getInitialState() { return {showReply: false}; }, showReply(event) { event.preventDefault(); this.setState({showReply: true}); }, cancelReply(event) { event.preventDefault(); this.setState({showReply: false}); }, renderReply() { ({CommentNew} = Telescope.components); return (
) }, render() { const htmlBody = {__html: this.props.htmlBody}; return (