menu
menu copied to clipboard
React Menu
Hi There, I'm running into a console error on a vertical menu where when I do a mouseover. Note that I have a horizontal menu on the same page (with...
source code: ``` import * as React from 'react'; import Menu, { SubMenu, MenuItem } from 'rc-menu'; import classNames from 'classnames'; import 'rc-menu/assets/index.css'; const horizontalMotion = { motionName: 'rc-menu-open-slide-up', motionAppear:...
findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of DomWrapper2 which is inside StrictMode. Instead, add a ref directly to the element you want to reference.
submenu can not hidden after showing because class 'rc-menu-submenu-hidden' is not in rc-menu/assets/index.css
If 'rc-dropdown' and 'rc-menu' are used together, the style of 'rc-menu' cannot be applied because the prefixCls of all elements are applied as 'rc-dropdown'.
I have to build a menu which includes options but also actions. For this reason I set `selectable` to `false`. What would be the best way to destroy the popup...
`Menu` and `Divider` is typed correctly:  But `Item` and `SubMenu` are not:   which is because of `const connected` being of type `any`: 
Hello, The overflowed submenu its positionally hardcoded and can't be managed. If we can pass the prop from the menu like "OverflowedPopupOffset" we should be able to control the position...
An error occurs when SubMenu component is called
Hi There, I'm running the following code: ```jsx import React from "react"; import "./styles.css"; import Menu, { SubMenu, MenuItem, Divider } from "rc-menu"; export default function App() { return (...