mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +08:00
36 lines
694 B
TypeScript
36 lines
694 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 href="https://www.antgroup.com">1st menu item</a>,
|
|
key: '0',
|
|
},
|
|
{
|
|
label: <a href="https://www.aliyun.com">2nd menu item</a>,
|
|
key: '1',
|
|
},
|
|
{
|
|
type: 'divider',
|
|
},
|
|
{
|
|
label: '3rd menu item',
|
|
key: '3',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Dropdown menu={{ items }} trigger={['click']}>
|
|
<a onClick={(e) => e.preventDefault()}>
|
|
<Space>
|
|
Click me
|
|
<DownOutlined />
|
|
</Space>
|
|
</a>
|
|
</Dropdown>
|
|
);
|
|
|
|
export default App;
|