You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
538 B
27 lines
538 B
2 years ago
|
import React from 'react';
|
||
|
import { message, Popconfirm } from 'antd';
|
||
|
|
||
|
const confirm = (e: React.MouseEvent<HTMLElement>) => {
|
||
|
console.log(e);
|
||
|
message.success('Click on Yes');
|
||
|
};
|
||
|
|
||
|
const cancel = (e: React.MouseEvent<HTMLElement>) => {
|
||
|
console.log(e);
|
||
|
message.error('Click on No');
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Popconfirm
|
||
|
title="Are you sure to delete this task?"
|
||
|
onConfirm={confirm}
|
||
|
onCancel={cancel}
|
||
|
okText="Yes"
|
||
|
cancelText="No"
|
||
|
>
|
||
|
<a href="#">Delete</a>
|
||
|
</Popconfirm>
|
||
|
);
|
||
|
|
||
|
export default App;
|