mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 09:39:10 +08:00
36 lines
647 B
TypeScript
36 lines
647 B
TypeScript
|
import * as React from 'react';
|
||
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
||
|
|
||
|
demoTest('dropdown', {
|
||
|
testRootProps: false,
|
||
|
});
|
||
|
|
||
|
rootPropsTest(
|
||
|
'dropdown',
|
||
|
(Dropdown, props) => (
|
||
|
<Dropdown
|
||
|
{...props}
|
||
|
menu={{
|
||
|
openKeys: ['1'],
|
||
|
items: [
|
||
|
{
|
||
|
key: '1',
|
||
|
label: 'parent',
|
||
|
children: [
|
||
|
{
|
||
|
key: '2',
|
||
|
label: 'child',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
}}
|
||
|
>
|
||
|
<a />
|
||
|
</Dropdown>
|
||
|
),
|
||
|
{
|
||
|
findRootElements: () => document.querySelector('.ant-dropdown')!,
|
||
|
},
|
||
|
);
|