mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
|
import React from 'react';
|
|||
|
import { Popconfirm } from 'antd';
|
|||
|
|
|||
|
const App: React.FC = () => (
|
|||
|
<Popconfirm title="Are you sure?" okText="Yes" cancelText="No">
|
|||
|
<a href="#">Delete</a>
|
|||
|
</Popconfirm>
|
|||
|
);
|
|||
|
|
|||
|
export default App;
|