import React from 'react'; import { SmileOutlined } from '@ant-design/icons'; import { Dropdown, Menu } from 'antd'; const { _InternalPanelDoNotUseOrYouWillBeFired: InternalDropdown } = Dropdown; const menu = ( 1st menu item ), }, { key: '2', label: ( 2nd menu item (disabled) ), icon: , disabled: true, }, { key: '3', label: ( 3rd menu item (disabled) ), disabled: true, }, { key: '4', danger: true, label: 'a danger item', }, ]} /> ); const App: React.FC = () => ; export default App;