(props: any)
| 4473 | class Example111 extends React.Component<any, any> { |
| 4474 | state: any; |
| 4475 | constructor(props: any) { |
| 4476 | super(props); |
| 4477 | |
| 4478 | this.toggle = this.toggle.bind(this); |
| 4479 | this.state = { |
| 4480 | isOpen: false, |
| 4481 | }; |
| 4482 | } |
| 4483 | toggle() { |
| 4484 | this.setState({ |
| 4485 | isOpen: !this.state.isOpen, |
nothing calls this directly
no outgoing calls
no test coverage detected