()
| 21 | |
| 22 | export class StatusCard extends Component { |
| 23 | constructor() { |
| 24 | super(); |
| 25 | this.wrapperRef = React.createRef(); |
| 26 | this.state = { |
| 27 | sound_level: 75, // better of setting default values from localStorage |
| 28 | brightness_level: 100 // setting default value to 100 so that by default its always full. |
| 29 | }; |
| 30 | } |
| 31 | handleClickOutside = () => { |
| 32 | this.props.toggleVisible(); |
| 33 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected