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({ body: this.refs.body.value, author: this.refs.author.value }); } render() { return
} } export default CommentsForm;