(props: any)
| 5003 | class Example122 extends React.Component<any, any> { |
| 5004 | state: any; |
| 5005 | constructor(props: any) { |
| 5006 | super(props); |
| 5007 | |
| 5008 | this.toggle = this.toggle.bind(this); |
| 5009 | this.state = { |
| 5010 | dropdownOpen: false, |
| 5011 | }; |
| 5012 | } |
| 5013 | |
| 5014 | toggle() { |
| 5015 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected