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.
38 lines
633 B
38 lines
633 B
import React from 'react';
|
|
import { DownOutlined } from '@ant-design/icons';
|
|
import type { MenuProps } from 'antd';
|
|
import { Dropdown, Space, Typography } from 'antd';
|
|
|
|
const items: MenuProps['items'] = [
|
|
{
|
|
key: '1',
|
|
label: 'Item 1',
|
|
},
|
|
{
|
|
key: '2',
|
|
label: 'Item 2',
|
|
},
|
|
{
|
|
key: '3',
|
|
label: 'Item 3',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Dropdown
|
|
menu={{
|
|
items,
|
|
selectable: true,
|
|
defaultSelectedKeys: ['3'],
|
|
}}
|
|
>
|
|
<Typography.Link>
|
|
<Space>
|
|
Selectable
|
|
<DownOutlined />
|
|
</Space>
|
|
</Typography.Link>
|
|
</Dropdown>
|
|
);
|
|
|
|
export default App;
|
|
|