(props)
| 26 | |
| 27 | class Input extends React.Component { |
| 28 | constructor(props) { |
| 29 | super(props); |
| 30 | this.getRef = this.getRef.bind(this); |
| 31 | this.focus = this.focus.bind(this); |
| 32 | } |
| 33 | |
| 34 | getRef(ref) { |
| 35 | if (this.props.innerRef) { |
nothing calls this directly
no outgoing calls
no test coverage detected