2020-05-08 14:50:42 +08:00

616 B

order, title, debug
order title debug
99
zh-CN en-US
多样的 Child Diverse Child
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
  </Space>,
  mountNode,
);