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.
56 lines
1.5 KiB
56 lines
1.5 KiB
import React from 'react';
|
|
import type { MenuProps } from 'antd';
|
|
import { Button, Dropdown } from 'antd';
|
|
|
|
const items: MenuProps['items'] = [
|
|
{
|
|
key: '1',
|
|
label: (
|
|
<a target="_blank" rel="noopener noreferrer" href="https://www.antgroup.com">
|
|
1st menu item
|
|
</a>
|
|
),
|
|
},
|
|
{
|
|
key: '2',
|
|
label: (
|
|
<a target="_blank" rel="noopener noreferrer" href="https://www.aliyun.com">
|
|
2nd menu item
|
|
</a>
|
|
),
|
|
},
|
|
{
|
|
key: '3',
|
|
label: (
|
|
<a target="_blank" rel="noopener noreferrer" href="https://www.luohanacademy.com">
|
|
3rd menu item
|
|
</a>
|
|
),
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Dropdown menu={{ items }} placement="bottomLeft" arrow={{ pointAtCenter: true }}>
|
|
<Button>bottomLeft</Button>
|
|
</Dropdown>
|
|
<Dropdown menu={{ items }} placement="bottom" arrow={{ pointAtCenter: true }}>
|
|
<Button>bottom</Button>
|
|
</Dropdown>
|
|
<Dropdown menu={{ items }} placement="bottomRight" arrow={{ pointAtCenter: true }}>
|
|
<Button>bottomRight</Button>
|
|
</Dropdown>
|
|
<br />
|
|
<Dropdown menu={{ items }} placement="topLeft" arrow={{ pointAtCenter: true }}>
|
|
<Button>topLeft</Button>
|
|
</Dropdown>
|
|
<Dropdown menu={{ items }} placement="top" arrow={{ pointAtCenter: true }}>
|
|
<Button>top</Button>
|
|
</Dropdown>
|
|
<Dropdown menu={{ items }} placement="topRight" arrow={{ pointAtCenter: true }}>
|
|
<Button>topRight</Button>
|
|
</Dropdown>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
|