You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
573 B
27 lines
573 B
2 years ago
|
import React from 'react';
|
||
|
import { Card, Col, Row } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<div className="site-card-wrapper">
|
||
|
<Row gutter={16}>
|
||
|
<Col span={8}>
|
||
|
<Card title="Card title" bordered={false}>
|
||
|
Card content
|
||
|
</Card>
|
||
|
</Col>
|
||
|
<Col span={8}>
|
||
|
<Card title="Card title" bordered={false}>
|
||
|
Card content
|
||
|
</Card>
|
||
|
</Col>
|
||
|
<Col span={8}>
|
||
|
<Card title="Card title" bordered={false}>
|
||
|
Card content
|
||
|
</Card>
|
||
|
</Col>
|
||
|
</Row>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default App;
|