I have a select field, but I can't get width of this select using React Ref.
this.selectRef.current is an object, but it seems there is no way to get width of the element
<Select
fullWidth
ref={this.selectRef}
onChange={event => {
this.setState({
value: event.target.value
});
}}
value={this.state.value}
>
<MenuItem value={0}>Zero</MenuItem>
<MenuItem value={1}>One</MenuItem>
<MenuItem value={2}>Two</MenuItem>
<MenuItem value={3}>Three</MenuItem>
<MenuItem value={4}>Four</MenuItem>
</Select>
Sandbox example https://codesandbox.io/embed/hungry-galileo-eydfw
