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

19 lines
261 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-04-10 15:38:52 +08:00
order: 2
2016-03-31 09:40:55 +08:00
title: 简洁卡片
---
2016-02-20 16:40:18 +08:00
只包含内容区域。
````jsx
import { Card } from 'antd';
ReactDOM.render(
<Card style={{ width: 300 }}>
2016-04-10 15:38:52 +08:00
<p>卡片的内容</p>
<p>卡片的内容</p>
<p>卡片的内容</p>
2016-02-20 16:40:18 +08:00
</Card>
, mountNode);
````