Which input is the Ref reference pass?

class CustomTextInput extends React.Component {
  constructor(props) {
    super(props);
    this.focus = this.focus.bind(this);
  }

  focus() {
    // APItext
    this.textInput.focus();
  }

  render() {
    // `ref`textDOM(:this.textInput)
    return (
      <div>
        <input
          type="text"
          ref={(input) => { this.textInput = input; }} />
        <input
          type="button"
          value="Focus the text input"
          onClick={this.focus}
        />

      </div>
    );
  }
}
class AutoFocusTextInput extends React.Component {
  componentDidMount() {
    this.textInput.focus();
  }

  render() {
    return (
      <CustomTextInput
        ref={(input) => { this.textInput = input; }} />
    );
  }
}

the following ref, parameter input on a custom component is supposed to be the loaded component instance.
but there are two input tags in CustomTextInput. Which one is this? Ask

Mar.03,2021

passes CustomTextInput this component

Menu