import React from 'react'; import PropTypes from 'prop-types'; import styles from './OldCommontEditor.less'; interface OldCommontEditorProps {} interface OldCommontEditorState {} class OldCommontEditor extends React.Component { constructor(props: OldCommontEditorProps) { super(props); this.state = {}; } render() { return (
Component
) } } export default OldCommontEditor;