mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
23 lines
523 B
TypeScript
23 lines
523 B
TypeScript
import React from 'react';
|
|
import { Button, Popover, Space } from 'antd';
|
|
|
|
const content = (
|
|
<>
|
|
<p>Content</p>
|
|
<p>Content</p>
|
|
</>
|
|
);
|
|
|
|
const App: React.FC = () => (
|
|
<Space wrap>
|
|
<Popover placement="topLeft" title="Title" content={content}>
|
|
<Button>Align edge / 边缘对齐</Button>
|
|
</Popover>
|
|
<Popover placement="topLeft" title="Title" content={content} arrowPointAtCenter>
|
|
<Button>Arrow points to center / 箭头指向中心</Button>
|
|
</Popover>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|