(props: any)
| 2611 | class ModalExample72 extends React.Component<any, any> { |
| 2612 | state: any; |
| 2613 | constructor(props: any) { |
| 2614 | super(props); |
| 2615 | this.state = { |
| 2616 | modal: false, |
| 2617 | }; |
| 2618 | |
| 2619 | this.toggle = this.toggle.bind(this); |
| 2620 | } |
| 2621 | |
| 2622 | toggle() { |
| 2623 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected