mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
24 lines
525 B
JavaScript
24 lines
525 B
JavaScript
import React, {Component, PropTypes} from 'react';
|
|
import Editor from './base/Editor'
|
|
|
|
const RequestBodyEditor = ({body, contentType, onChange, className}) => (
|
|
<Editor
|
|
value={body}
|
|
className={className}
|
|
onChange={onChange}
|
|
mode={contentType}
|
|
placeholder="request body here..."
|
|
/>
|
|
);
|
|
|
|
RequestBodyEditor.propTypes = {
|
|
// Functions
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
// Other
|
|
body: PropTypes.string.isRequired,
|
|
contentType: PropTypes.string.isRequired
|
|
};
|
|
|
|
export default RequestBodyEditor;
|