(props: any)
| 1199 | class Example37 extends React.Component<any, any> { |
| 1200 | state: any; |
| 1201 | constructor(props: any) { |
| 1202 | super(props); |
| 1203 | this.toggle = this.toggle.bind(this); |
| 1204 | this.state = { collapse: false }; |
| 1205 | } |
| 1206 | |
| 1207 | toggle() { |
| 1208 | this.setState({ collapse: !this.state.collapse }); |
nothing calls this directly
no outgoing calls
no test coverage detected