()
| 2 | import { Card, Space } from 'antd'; |
| 3 | |
| 4 | const Bbb: React.FC = () => ( |
| 5 | <Space direction="vertical" size={16}> |
| 6 | <Card title="Default size card" extra={<a href="#">More</a>} style={{ width: 300 }}> |
| 7 | <p>Card content</p> |
| 8 | <p>Card content</p> |
| 9 | <p>Card content</p> |
| 10 | </Card> |
| 11 | <Card size="small" title="Small size card" extra={<a href="#">More</a>} style={{ width: 300 }}> |
| 12 | <p>Card content</p> |
| 13 | <p>Card content</p> |
| 14 | <p>Card content</p> |
| 15 | </Card> |
| 16 | </Space> |
| 17 | ); |
| 18 | |
| 19 | export default Bbb; |
nothing calls this directly
no outgoing calls
no test coverage detected