mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-25 05:32:31 +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')!,
|
|
},
|
|
);
|