mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
553 B
553 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
可以利用 Card.Meta
支持更灵活的内容。
en-US
You can use Card.Meta
to support more flexible content.
import { Card } from 'antd';
const { Meta } = Card;
ReactDOM.render(
<Card
hoverable
style={{ width: 240 }}
cover={<img alt="example" src="https://os.alipayobjects.com/rmsportal/QBnOOoLaAfKPirc.png" />}
>
<Meta title="Europe Street beat" description="www.instagram.com" />
</Card>,
mountNode,
);