(props: any)
| 2665 | state: any; |
| 2666 | element: HTMLElement; |
| 2667 | constructor(props: any) { |
| 2668 | super(props); |
| 2669 | this.state = { |
| 2670 | modal: false, |
| 2671 | backdrop: true, |
| 2672 | }; |
| 2673 | |
| 2674 | this.toggle = this.toggle.bind(this); |
| 2675 | this.changeBackdrop = this.changeBackdrop.bind(this); |
| 2676 | } |
| 2677 | |
| 2678 | toggle() { |
| 2679 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected