mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-26 01:42:30 +08:00
753c01ae18
fix antd.notification
23 lines
352 B
Markdown
23 lines
352 B
Markdown
# 基本
|
|
|
|
- order: 0
|
|
|
|
最简单的用法。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Popover, Button } from 'antd';
|
|
|
|
const content = <div>
|
|
<p>内容</p>
|
|
<p>内容</p>
|
|
</div>;
|
|
|
|
ReactDOM.render(
|
|
<Popover overlay={content} title="标题">
|
|
<Button type="primary">弹出卡片</Button>
|
|
</Popover>
|
|
, document.getElementById('components-popover-demo-basic'));
|
|
````
|