2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-05-26 17:46:55 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 典型卡片
|
|
|
|
en-US: Basic card
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2016-02-19 19:35:49 +08:00
|
|
|
|
2016-05-26 17:46:55 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-02-19 19:35:49 +08:00
|
|
|
包含标题、内容、操作区域。
|
|
|
|
|
2016-05-26 17:46:55 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
A basic card containing a title, content and an extra corner content.
|
|
|
|
|
2017-01-19 15:19:03 +08:00
|
|
|
````__react
|
2016-02-19 19:35:49 +08:00
|
|
|
import { Card } from 'antd';
|
|
|
|
|
2016-02-20 16:40:18 +08:00
|
|
|
ReactDOM.render(
|
2016-05-26 17:46:55 +08:00
|
|
|
<Card title="Card title" extra={<a href="#">More</a>} style={{ width: 300 }}>
|
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
|
|
|
<p>Card content</p>
|
2016-02-20 16:40:18 +08:00
|
|
|
</Card>
|
|
|
|
, mountNode);
|
2016-02-19 19:35:49 +08:00
|
|
|
````
|