I am new to MUI and I used something like this (Sample code)
<Select
name="premiumUser"
value={1}
displayEmpty={true}
fullWidth>
<MenuItem value={1}>True</MenuItem>
<MenuItem value={2}>False</MenuItem>
</Select>
but when the dropdown is open, I can't click on any button (say submit button), instead, the dropdown closes and the I have to click again on the button to submit. Is there any workaround for this?
I think it's acting as a "Popover" what I need is to make it act like "Popper"