import React from 'react'; class CommentsForm extends React.Component { constructor(props){ super(props); this.handleSubmit = this.handleSubmit.bind(this); } handleSubmit(event){ event.preventDefault(); this.props.handleSubmit(this.refs.comment.value); } render() { return
} } export default CommentsForm;