mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
19 lines
366 B
TypeScript
19 lines
366 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('popconfirm', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest(
|
||
|
'popconfirm',
|
||
|
(Popconfirm, props) => (
|
||
|
<Popconfirm {...props}>
|
||
|
<span />
|
||
|
</Popconfirm>
|
||
|
),
|
||
|
{
|
||
|
findRootElements: () => document.querySelector('.ant-popover')!,
|
||
|
},
|
||
|
);
|