react-responsive-navbar icon indicating copy to clipboard operation
react-responsive-navbar copied to clipboard

how to close automatically?

Open moparlakci opened this issue 6 years ago • 1 comments

How can we close the menu automatically when a menu item is clicked?

moparlakci avatar May 29 '19 14:05 moparlakci

This is not best approach but you may do this using ref as below:

render() {
return (
  <ResponsiveMenu ref={menu=> this.menuObj = menu}
  ...>
  )
}

handleMenuItemClicked() {
   ...
   this.menuObj.handleClick();
 }

imnapo avatar Jul 31 '19 05:07 imnapo