How to show indeterminate="true"
state in checkbox in Material UI:
<Checkbox
label={obj.module}
style={styles.checkbox}
value={this.state.value}
/>
How to show indeterminate="true"
state in checkbox in Material UI:
<Checkbox
label={obj.module}
style={styles.checkbox}
value={this.state.value}
/>
it's not supported right now but i think it could be in the next set of releases going by this thread.
https://github.com/callemall/material-ui/issues/4828
in the meantime you can plug it in yourself with either by creating a component like here
indeterminate checkbox in React JSX
and styling it yourself.