mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
import { DownOutlined } from '@ant-design/icons';
|
|
import React from 'react';
|
|
import { Dropdown, Space } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Space>
|
|
<Dropdown.Button icon={<DownOutlined />} menu={{ items: [] }}>
|
|
Submit
|
|
</Dropdown.Button>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|