mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
ac5a06027e
This reverts commit ea8ed28209
.
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')!,
|
|
},
|
|
);
|