mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-09 04:46:52 +10:00
435 B
435 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
包含标题、内容、操作区域。
en-US
A basic card containing a title, content and an extra corner content.
import { Card } from 'antd';
ReactDOM.render(
<Card title="Card title" extra={<a href="#">More</a>} style={{ width: 300 }}>
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
</Card>
, mountNode);