mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
37 lines
703 B
TypeScript
37 lines
703 B
TypeScript
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'),
|
|
},
|
|
);
|