mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 15:27:18 +00:00
549 B
Executable File
549 B
Executable File
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
最简单的用法,浮层的大小由内容区域决定。
en-US
The most basic example. The size of the floating layer depends on the contents region.
import { Popover, Button } from 'antd';
const content = (
<div>
<p>Content</p>
<p>Content</p>
</div>
);
ReactDOM.render(
<Popover content={content} title="Title">
<Button type="primary">Hover me</Button>
</Popover>,
mountNode,
);