I work in an ItemView and have a simple use case as follows:
<MenuButton>
<Menu>
<MenuItem onClick={() => {/* Do something */}} />
</Menu>
</MenuButton>On desktop, clicking once on the menu item will trigger its `onClick`, while on mobile, the first press “selects” the menu, then a second press triggers the `onClick`.
Is this the expected behavior? I would have expected only a single press to be required.