(props: any)
| 1291 | class Example39 extends React.Component<any, any> { |
| 1292 | state: any; |
| 1293 | constructor(props: any) { |
| 1294 | super(props); |
| 1295 | |
| 1296 | this.toggle = this.toggle.bind(this); |
| 1297 | this.state = { |
| 1298 | dropdownOpen: false, |
| 1299 | }; |
| 1300 | } |
| 1301 | |
| 1302 | toggle() { |
| 1303 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected