import React from 'react'; | |
import { Col, Row } from 'antd'; | |
const App: React.FC = () => ( | |
<Row> | |
<Col xs={2} sm={4} md={6} lg={8} xl={10}> | |
Col | |
</Col> | |
<Col xs={20} sm={16} md={12} lg={8} xl={4}> | |
Col | |
</Col> | |
<Col xs={2} sm={4} md={6} lg={8} xl={10}> | |
Col | |
</Col> | |
</Row> | |
); | |
export default App; | |