import React from 'react'; class Layout extends React.Component { render() { const {controls, content} = this.props; const {height} = this.state; const rootStyles = { height, padding: '8px', backgroundColor: '#F7F7F7' }; const controlsStyle = { width: '240px', float: 'left', height: '100%', overflowY: 'auto' }; const contentStyle = { height: height - 15, marginLeft: '250px', border: '1px solid #DDD', borderRadius: '4px', boxShadow: '0px 2px 6px -1px #b8b8b8', padding: '5px', backgroundColor: '#FFF' }; return (