(props: any)
| 4086 | class Example102 extends React.Component<any, any> { |
| 4087 | state: any; |
| 4088 | constructor(props: any) { |
| 4089 | super(props); |
| 4090 | |
| 4091 | this.toggle = this.toggle.bind(this); |
| 4092 | this.state = { |
| 4093 | tooltipOpen: false, |
| 4094 | }; |
| 4095 | } |
| 4096 | |
| 4097 | toggle() { |
| 4098 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected