Trying to implement a simple true/false table with material-ui radiobuttons. When it didn't accept boolean values for 'value', I simplified to just strings as follows:
<RadioButtonGroup name="user_status" defaultSelected="hello" onChange={updateNewInactive}>
<RadioButton
value="hello"
label="Active"
/>
<RadioButton
value="goodbye"
label="Inactive"
/>
</RadioButtonGroup>
I'm confused that I'm getting an error when 'defaultSelected' is a correct prop for RadioButtonGroup. Following the stack traces only leads to error functions in react eg. console.log(error) not to any errors in the source code. Can anyone clarify what might be going on?
