mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-06 05:58:46 +08:00
1c518c3d97
* Card improve & bugfix * update snap
577 B
577 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
noHovering={false}
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);