(props: any)
| 4126 | class Example103 extends React.Component<any, any> { |
| 4127 | state: any; |
| 4128 | constructor(props: any) { |
| 4129 | super(props); |
| 4130 | |
| 4131 | this.toggle = this.toggle.bind(this); |
| 4132 | this.state = { |
| 4133 | tooltipOpen: false, |
| 4134 | }; |
| 4135 | } |
| 4136 | |
| 4137 | toggle() { |
| 4138 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected