react-navbar
react-navbar copied to clipboard
Is it possible to support MenuItem as an anchor element
It is very usual for user to right click in the dropdown of the nav bar to 'open in new tab' Is it possible to make as an anchor element so that it is more user friendly??
You can wrap your item label with an Anchor component (or anchor tag) to render menu items:
<MenuItem eventKey="dashboard.1">
<Anchor href="https://www.gmail.com">Menu Item 1</Anchor>
</MenuItem>