I have a div which has a material ui Select, material ui TextField and a plain html select. This div has an onchange event which simply console logs the event.target.value. When ever the onchange of material ui TextField or the select is triggered, event.target.value is logged to the console. But not for the onchange of material ui select.
sample code: https://codesandbox.io/s/material-demo-03495?file=/demo.tsx
What am i missing here?
Thanks.