| import React from 'react'; | |
| import { Popconfirm } from 'antd'; | |
| const { _InternalPanelDoNotUseOrYouWillBeFired: InternalPopconfirm } = Popconfirm; | |
| const App: React.FC = () => ( | |
| <> | |
| <InternalPopconfirm title="Are you OK?" description="Does this look good?" /> | |
| <InternalPopconfirm | |
| title="Are you OK?" | |
| description="Does this look good?" | |
| placement="bottomRight" | |
| style={{ width: 250 }} | |
| /> | |
| <InternalPopconfirm icon={null} title="Are you OK?" /> | |
| <InternalPopconfirm icon={null} title="Are you OK?" description="Does this look good?" /> | |
| </> | |
| ); | |
| export default App; | |