You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
702 B
35 lines
702 B
import * as React from 'react';
|
|
import demoTest, { rootPropsTest } from '../../../tests/shared/demoTest';
|
|
|
|
demoTest('menu', { testRootProps: false });
|
|
|
|
rootPropsTest(
|
|
'menu',
|
|
(Menu, props) => (
|
|
<Menu
|
|
{...props}
|
|
mode="vertical"
|
|
openKeys={['lbl2']}
|
|
items={[
|
|
{
|
|
label: 'Label 1',
|
|
key: 'lbl1',
|
|
},
|
|
{
|
|
label: 'Label 2',
|
|
key: 'lbl2',
|
|
children: [
|
|
{
|
|
label: 'Label 3',
|
|
key: 'lbl3',
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
),
|
|
{
|
|
findRootElements: (container) =>
|
|
container.querySelectorAll('.ant-menu-root, .ant-menu-submenu-popup'),
|
|
},
|
|
);
|
|
|