I am trying to programmatically set focus on (activate) one of the MenuItem(s) inside the Menu component in material-ui. I can manually do it by tabbing to it but I need to do it programmatically in response to a key down event.
<Menu disableAutoFocus={true}>
<MenuItem .../>
<MenuItem .../>
...
</Menu>