(props: any)
| 1361 | class Example43 extends React.Component<any, any> { |
| 1362 | state: any; |
| 1363 | constructor(props: any) { |
| 1364 | super(props); |
| 1365 | |
| 1366 | this.toggle = this.toggle.bind(this); |
| 1367 | this.state = { |
| 1368 | dropdownOpen: false, |
| 1369 | }; |
| 1370 | } |
| 1371 | |
| 1372 | toggle() { |
| 1373 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected