()
| 4342 | private input: HTMLInputElement | null; |
| 4343 | |
| 4344 | render() { |
| 4345 | return ( |
| 4346 | <Input |
| 4347 | type="file" |
| 4348 | innerRef={(input: HTMLInputElement) => { |
| 4349 | this.input = input; |
| 4350 | }} |
| 4351 | /> |
| 4352 | ); |
| 4353 | } |
| 4354 | } |
| 4355 | |
| 4356 | class Example108 extends React.Component<any, any> { |
nothing calls this directly
no outgoing calls
no test coverage detected