import React from 'react'; | |
import type { PopconfirmProps } from 'antd'; | |
import { Button, message, Popconfirm } from 'antd'; | |
const confirm: PopconfirmProps['onConfirm'] = (e) => { | |
console.log(e); | |
message.success('Click on Yes'); | |
}; | |
const cancel: PopconfirmProps['onCancel'] = (e) => { | |
console.log(e); | |
message.error('Click on No'); | |
}; | |
const App: React.FC = () => ( | |
<Popconfirm | |
title="Delete the task" | |
description="Are you sure to delete this task?" | |
onConfirm={confirm} | |
onCancel={cancel} | |
okText="Yes" | |
cancelText="No" | |
> | |
<Button danger>Delete</Button> | |
</Popconfirm> | |
); | |
export default App; | |