Can someone explain the <Select /> component onChange arguments?
The value argument is string | null but the option argument, option.value is just string. It's confusing because the string | null would imply that it's sometimes not a string and you need to check for that, but if option.value is always a string, it makes me second guess.
Anyone understand this?