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

18 lines
195 B
Markdown
Raw Normal View History

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