ant-design/components/card/demo/basic.md
偏右 e361b30ded
refactor: Card demo and code (#24764)
* 🎬 update Card demo

* refactor card code

* 🎬 update Tabs demo

* update snapshot
2020-06-05 20:11:25 +08:00

812 B

order title
0
zh-CN en-US
典型卡片 Basic card

zh-CN

包含标题、内容、操作区域。

en-US

A basic card containing a title, content and an extra corner content. Supports two sizes: default and small.

import { Card } from 'antd';

ReactDOM.render(
  <>
    <Card title="Default size card" extra={<a href="#">More</a>} style={{ width: 300 }}>
      <p>Card content</p>
      <p>Card content</p>
      <p>Card content</p>
    </Card>
    <Card size="small" title="Small size card" extra={<a href="#">More</a>} style={{ width: 300 }}>
      <p>Card content</p>
      <p>Card content</p>
      <p>Card content</p>
    </Card>
  </>,
  mountNode,
);