import React from 'react'; import PropTypes from 'prop-types'; /** * * @author Yuki Takei * * @export * @class Comment * @extends {React.Component} */ export default class CommentForm extends React.Component { constructor(props) { super(props); this.state = { }; } render() { return (

CommentForm.js

); } } CommentForm.propTypes = { };