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

27 lines
349 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.
2016-02-20 16:40:18 +08:00
````jsx
import { Card } from 'antd';
ReactDOM.render(
<Card 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);
````