react-responsive-navbar
react-responsive-navbar copied to clipboard
how to close automatically?
How can we close the menu automatically when a menu item is clicked?
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();
}