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 = () => ( Selectable ); export default App;