(props: any)
| 503 | class Example15 extends React.Component<any, any> { |
| 504 | state: any; |
| 505 | constructor(props: any) { |
| 506 | super(props); |
| 507 | |
| 508 | this.toggle = this.toggle.bind(this); |
| 509 | this.state = { |
| 510 | dropdownOpen: false, |
| 511 | }; |
| 512 | } |
| 513 | |
| 514 | toggle() { |
| 515 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected