(props: any)
| 1236 | class Example38 extends React.Component<any, any> { |
| 1237 | state: any; |
| 1238 | constructor(props: any) { |
| 1239 | super(props); |
| 1240 | this.onOpened = this.onOpened.bind(this); |
| 1241 | this.onClosed = this.onClosed.bind(this); |
| 1242 | this.toggle = this.toggle.bind(this); |
| 1243 | this.state = { collapse: false, status: 'Closed' }; |
| 1244 | } |
| 1245 | |
| 1246 | onOpened() { |
| 1247 | this.setState({ ...this.state, status: 'Opened' }); |
nothing calls this directly
no outgoing calls
no test coverage detected