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

17 lines
200 B
Markdown
Raw Normal View History

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