MCPcopy Create free account
hub / github.com/QuarkGluonPlasma/react-course-code / Bbb

Function Bbb

locate-code-test/src/Bbb.tsx:4–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import { Card, Space } from 'antd';
3
4const 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
19export default Bbb;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected