ant-design/components/popconfirm/demo/locale.tsx
Star fb4029c17f
doc: fix Scroll To Top (#41436)
Co-authored-by: star <a@qqfav.com>
2023-03-30 23:23:04 +08:00

16 lines
316 B
TypeScript

import React from 'react';
import { Button, Popconfirm } from 'antd';
const App: React.FC = () => (
<Popconfirm
title="Delete the task"
description="Are you sure to delete this task?"
okText="Yes"
cancelText="No"
>
<Button type="link">Delete</Button>
</Popconfirm>
);
export default App;