You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
494 B

---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
## zh-CN
9 years ago
最简单的用法,浮层的大小由内容区域决定。
## en-US
The most basic example. The size of the floating layer depends on the contents region.
````__react
import { Popover, Button } from 'antd';
const content = (
<div>
<p>Content</p>
<p>Content</p>
</div>
);
9 years ago
ReactDOM.render(
<Popover content={content} title="Title">
<Button type="primary">Hover me</Button>
</Popover>
, mountNode);
````