import React from 'react'
import { Row, Col } from 'antd'
export default class TwoColContent extends React.Component {
render() {
return <Row>
<Col span={18}>
{this.props.leftContent}
</Col>
<Col span={6}>
{this.props.rightContent}
</Row>
}