(props: any)
| 378 | class Example14 extends React.Component<any, any> { |
| 379 | state: any; |
| 380 | constructor(props: any) { |
| 381 | super(props); |
| 382 | |
| 383 | this.state = { cSelected: [] }; |
| 384 | |
| 385 | this.onRadioBtnClick = this.onRadioBtnClick.bind(this); |
| 386 | this.onCheckboxBtnClick = this.onCheckboxBtnClick.bind(this); |
| 387 | } |
| 388 | |
| 389 | onRadioBtnClick(rSelected: number) { |
| 390 | this.setState({ rSelected }); |
nothing calls this directly
no outgoing calls
no test coverage detected