(props)
| 16 | |
| 17 | class Form extends Component { |
| 18 | constructor(props) { |
| 19 | super(props); |
| 20 | this.getRef = this.getRef.bind(this); |
| 21 | this.submit = this.submit.bind(this); |
| 22 | } |
| 23 | |
| 24 | getRef(ref) { |
| 25 | if (this.props.innerRef) { |
nothing calls this directly
no outgoing calls
no test coverage detected