| 1234567891011121314151617181920212223242526272829 |
- import React from 'react';
- import PropTypes from 'prop-types';
- /**
- *
- * @author Yuki Takei <yuki@weseek.co.jp>
- *
- * @export
- * @class Comment
- * @extends {React.Component}
- */
- export default class CommentForm extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- };
- }
- render() {
- return (
- <h1>CommentForm.js</h1>
- );
- }
- }
- CommentForm.propTypes = {
- };
|