salary-management-front/pc4mobx/hrmSalary/components/twoColContent/index.js

16 lines
367 B
JavaScript
Raw Normal View History

2022-03-12 17:07:11 +08:00
import React from 'react'
import { Row, Col } from 'antd'
export default class TwoColContent extends React.Component {
render() {
2022-03-15 13:59:36 +08:00
return <Row gutter={10}>
2022-03-12 17:07:11 +08:00
<Col span={18}>
{this.props.leftContent}
</Col>
<Col span={6}>
{this.props.rightContent}
</Col>
</Row>
}
}