(props: any)
| 5166 | |
| 5167 | class Example129 extends React.Component<any, any> { |
| 5168 | constructor(props: any) { |
| 5169 | super(props); |
| 5170 | |
| 5171 | this.toggle = this.toggle.bind(this); |
| 5172 | this.state = { |
| 5173 | dropdownOpen: false, |
| 5174 | }; |
| 5175 | } |
| 5176 | |
| 5177 | toggle() { |
| 5178 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected