(props: any)
| 3359 | class Example85 extends React.Component<any, any> { |
| 3360 | state: any; |
| 3361 | constructor(props: any) { |
| 3362 | super(props); |
| 3363 | |
| 3364 | this.toggle = this.toggle.bind(this); |
| 3365 | this.state = { |
| 3366 | popoverOpen: false, |
| 3367 | }; |
| 3368 | } |
| 3369 | |
| 3370 | toggle() { |
| 3371 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected