2018-03-12 14:02:34 +01:00

19 lines
267 B
JavaScript

/**
*
* WysiwygEditor
*
*/
import React from 'react';
import { Editor } from 'draft-js';
class WysiwygEditor extends React.Component {
render() {
return (
<Editor {...this.props} ref={this.props.setRef}/>
);
}
}
export default WysiwygEditor;