import React, {Component, PropTypes} from 'react'; import Editor from './base/Editor' class RequestBodyEditor extends Component { render () { const {body, contentType, onChange, className} = this.props; return ( ) } } RequestBodyEditor.propTypes = { // Functions onChange: PropTypes.func.isRequired, // Other body: PropTypes.string.isRequired, contentType: PropTypes.string.isRequired }; export default RequestBodyEditor;