2016-03-18 06:30:48 +00:00
|
|
|
import React from 'react'
|
|
|
|
import Editor from '../components/Editor'
|
|
|
|
|
|
|
|
const ResponsePane = (props) => (
|
2016-03-18 21:31:45 +00:00
|
|
|
<section id="response" className="pane col grid-v">
|
|
|
|
<header className="pane-header header-no-padding text-center bg-super-light">
|
2016-03-18 06:30:48 +00:00
|
|
|
<div>
|
|
|
|
<div className="tag success"><strong>200</strong> SUCCESS</div>
|
|
|
|
<div className="tag"><strong>GET</strong> https://google.com</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2016-03-18 21:31:45 +00:00
|
|
|
<div className="pane-body">
|
|
|
|
<Editor value={'{}'} options={{mode: 'application/json', lineNumbers: true}}></Editor>
|
|
|
|
</div>
|
2016-03-18 06:30:48 +00:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
|
|
|
|
ResponsePane.propTypes = {};
|
|
|
|
|
|
|
|
export default ResponsePane;
|