mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
261 B
261 B
order | title |
---|---|
2 | 简洁卡片 |
只包含内容区域。
import { Card } from 'antd';
ReactDOM.render(
<Card style={{ width: 300 }}>
<p>卡片的内容</p>
<p>卡片的内容</p>
<p>卡片的内容</p>
</Card>
, mountNode);