mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
709 B
709 B
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
Debug usage
en-US
Debug usage
import { Button, Popconfirm, Space } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Space>
<>
Button
<Button>Button</Button>
</>
Button
<Popconfirm title="Are you sure delete this task?" okText="Yes" cancelText="No">
<Button>Delete</Button>
</Popconfirm>
<Popconfirm title="Are you sure delete this task?" okText="Yes" cancelText="No">
<Button disabled>Delete</Button>
</Popconfirm>
{null}
{false}
{1}
Button
{null}
{undefined}
</Space>
);
export default App;