(props: any)
| 3170 | class Example80 extends React.Component<any, any> { |
| 3171 | state: any; |
| 3172 | constructor(props: any) { |
| 3173 | super(props); |
| 3174 | |
| 3175 | this.toggle = this.toggle.bind(this); |
| 3176 | this.state = { |
| 3177 | dropdownOpen: false, |
| 3178 | }; |
| 3179 | } |
| 3180 | |
| 3181 | toggle() { |
| 3182 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected