(props: any)
| 121 | class AlertExample extends React.Component<any, any> { |
| 122 | state: any; |
| 123 | constructor(props: any) { |
| 124 | super(props); |
| 125 | |
| 126 | this.state = { |
| 127 | visible: true, |
| 128 | }; |
| 129 | } |
| 130 | |
| 131 | onDismiss = () => { |
| 132 | this.setState({ visible: false }); |
nothing calls this directly
no outgoing calls
no test coverage detected