GridSort.js
441 Bytes
import React, { Component, Fragment } from 'react'
import { Row, Col } from 'antd'
class GridSort extends Component {
render() {
return (
<Fragment>
<div>
<Row>
<Col span={18} push={6}>col-18 col-push-6</Col>
<Col span={6} pull={18}>col-6 col-pull-18</Col>
</Row>
</div>
</Fragment>
)
}
}
export default GridSort