(props: any)
| 3115 | class Example79 extends React.Component<any, any> { |
| 3116 | state: any; |
| 3117 | constructor(props: any) { |
| 3118 | super(props); |
| 3119 | |
| 3120 | this.toggle = this.toggle.bind(this); |
| 3121 | this.state = { |
| 3122 | dropdownOpen: false, |
| 3123 | }; |
| 3124 | } |
| 3125 | |
| 3126 | toggle() { |
| 3127 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected