mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
|
import React from 'react';
|
||
|
import { Popconfirm } from 'antd';
|
||
|
|
||
|
const { _InternalPanelDoNotUseOrYouWillBeFired: InternalPopconfirm } = Popconfirm;
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<InternalPopconfirm title="Are you OK?" />
|
||
|
<InternalPopconfirm title="Are you OK?" placement="bottomRight" style={{ width: 250 }} />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|