/** * * WysiwygEditor * */ import React from 'react'; import { Editor } from 'draft-js'; import PropTypes from 'prop-types'; class WysiwygEditor extends React.Component { render() { return ( ); } } WysiwygEditor.defaultProps = { setRef: () => {}, }; WysiwygEditor.propTypes = { setRef: PropTypes.func, }; export default WysiwygEditor;