mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 06:49:32 +08:00
45 lines
852 B
TypeScript
45 lines
852 B
TypeScript
import React from 'react';
|
||
import { DownOutlined } from '@ant-design/icons';
|
||
import type { MenuProps } from 'antd';
|
||
import { Dropdown, Space } from 'antd';
|
||
|
||
const items: MenuProps['items'] = [
|
||
{
|
||
label: (
|
||
<a target="_blank" rel="noopener noreferrer" href="https://www.antgroup.com">
|
||
1st menu item
|
||
</a>
|
||
),
|
||
key: '0',
|
||
},
|
||
{
|
||
label: (
|
||
<a target="_blank" rel="noopener noreferrer" href="https://www.aliyun.com">
|
||
2nd menu item
|
||
</a>
|
||
),
|
||
key: '1',
|
||
},
|
||
{
|
||
type: 'divider',
|
||
},
|
||
{
|
||
label: '3rd menu item(disabled)',
|
||
key: '3',
|
||
disabled: true,
|
||
},
|
||
];
|
||
|
||
const App: React.FC = () => (
|
||
<Dropdown menu={{ items }}>
|
||
<a onClick={(e) => e.preventDefault()}>
|
||
<Space>
|
||
Hover me
|
||
<DownOutlined />
|
||
</Space>
|
||
</a>
|
||
</Dropdown>
|
||
);
|
||
|
||
export default App;
|