mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
662 B
662 B
order | title | debug | ||||
---|---|---|---|---|---|---|
99 |
|
true |
zh-CN
Debug usage
en-US
Debug usage
import { Space, Button, Popconfirm } from 'antd';
ReactDOM.render(
<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>,
mountNode,
);