import React, { PropTypes, Component } from 'react'; import Formsy from 'formsy-react'; import FRC from 'formsy-react-components'; const Textarea = FRC.Textarea; class CommentEdit extends Component { constructor() { super(); this.submitComment = this.submitComment.bind(this); } submitComment(data) { data = {$set: data}; Meteor.call("comments.edit", data, this.props.comment._id, (error, result) => { if (error) { // handle error } else { this.props.submitCallback(); } }); } render() { return (