mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
41 lines
596 B
Markdown
Executable File
41 lines
596 B
Markdown
Executable File
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
最简单的用法,浮层的大小由内容区域决定。
|
|
|
|
## en-US
|
|
|
|
The most basic example. The size of the floating layer depends on the contents region.
|
|
|
|
```tsx
|
|
import { Button, Popover } from 'antd';
|
|
import React from 'react';
|
|
|
|
const content = (
|
|
<div>
|
|
<p>Content</p>
|
|
<p>Content</p>
|
|
</div>
|
|
);
|
|
|
|
const App: React.FC = () => (
|
|
<Popover content={content} title="Title">
|
|
<Button type="primary">Hover me</Button>
|
|
</Popover>
|
|
);
|
|
|
|
export default App;
|
|
```
|
|
|
|
<style>
|
|
.ant-popover-content p {
|
|
margin: 0;
|
|
}
|
|
</style>
|