(props: any)
| 2819 | |
| 2820 | class ModalExampleDestructuring extends React.Component<any, any> { |
| 2821 | constructor(props: any) { |
| 2822 | super(props); |
| 2823 | this.state = { |
| 2824 | modal: false, |
| 2825 | unmountOnClose: true, |
| 2826 | }; |
| 2827 | |
| 2828 | this.toggle = this.toggle.bind(this); |
| 2829 | this.changeUnmountOnClose = this.changeUnmountOnClose.bind(this); |
| 2830 | } |
| 2831 | |
| 2832 | toggle() { |
| 2833 | this.setState((prevState: any) => ({ |
nothing calls this directly
no outgoing calls
no test coverage detected