ant-design/components/card/demo/simple.md

27 lines
350 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-04-10 15:38:52 +08:00
order: 2
title:
zh-CN: 简洁卡片
en-US: Simple card
2016-03-31 09:40:55 +08:00
---
2016-02-20 16:40:18 +08:00
## zh-CN
2016-02-20 16:40:18 +08:00
只包含内容区域。
## en-US
A simple card only containing a content area.
2017-02-13 10:55:53 +08:00
````jsx
2016-02-20 16:40:18 +08:00
import { Card } from 'antd';
ReactDOM.render(
<Card style={{ width: 300 }}>
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
2018-06-27 15:55:04 +08:00
</Card>,
mountNode);
2016-02-20 16:40:18 +08:00
````