No Description

OldCommentEditor.tsx 507B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import styles from './OldCommontEditor.less';
  4. interface OldCommontEditorProps {}
  5. interface OldCommontEditorState {}
  6. class OldCommontEditor extends React.Component<OldCommontEditorProps, OldCommontEditorState> {
  7. constructor(props: OldCommontEditorProps) {
  8. super(props);
  9. this.state = {};
  10. }
  11. render() {
  12. return (
  13. <div className={styles.wrapper}>
  14. Component
  15. </div>
  16. )
  17. }
  18. }
  19. export default OldCommontEditor;