(props: any)
| 2744 | class ModalExample74 extends React.Component<any, any> { |
| 2745 | state: any; |
| 2746 | constructor(props: any) { |
| 2747 | super(props); |
| 2748 | this.state = { |
| 2749 | modal: false, |
| 2750 | nestedModal: false, |
| 2751 | }; |
| 2752 | |
| 2753 | this.toggle = this.toggle.bind(this); |
| 2754 | this.toggleNested = this.toggleNested.bind(this); |
| 2755 | } |
| 2756 | |
| 2757 | toggle() { |
| 2758 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected