Нема описа

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import PropTypes from 'prop-types';
  3. import styles from './RichTextEditor.less';
  4. interface RichTextEditorProps {}
  5. interface RichTextEditorState {}
  6. class RichTextEditor extends React.Component<RichTextEditorProps, RichTextEditorState> {
  7. constructor(props: RichTextEditorProps) {
  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 RichTextEditor;