import React from 'react'; import classnames from 'classnames'; class Panel extends React.Component { render = () => { if (this.props.component === null) { return
; } var className = classnames('row', this.props.topClassName); return (
{this.props.title}

{this.props.component}
); } } export default Panel;