--- 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 = (

Content

Content

); const App: React.FC = () => ( ); export default App; ```