(props: any)
| 2952 | class Example75 extends React.Component<any, any> { |
| 2953 | state: any; |
| 2954 | constructor(props: any) { |
| 2955 | super(props); |
| 2956 | |
| 2957 | this.toggle = this.toggle.bind(this); |
| 2958 | this.state = { |
| 2959 | isOpen: false, |
| 2960 | }; |
| 2961 | } |
| 2962 | toggle() { |
| 2963 | this.setState({ |
| 2964 | isOpen: !this.state.isOpen, |
nothing calls this directly
no outgoing calls
no test coverage detected