mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 08:59:15 +08:00
19 lines
383 B
TypeScript
19 lines
383 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('popover', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest(
|
||
|
'popover',
|
||
|
(Popover, props) => (
|
||
|
<Popover {...props} title="Bamboo" content="Little">
|
||
|
<span />
|
||
|
</Popover>
|
||
|
),
|
||
|
{
|
||
|
findRootElements: () => document.querySelector('.ant-popover')!,
|
||
|
},
|
||
|
);
|