use ref in component reactjs
function CustomTextInput(props) { // textInput doit être déclaré ici pour que la ref puisse s’y référer const textInput = useRef(null); function handleClick() { textInput.current.focus(); } return ( <div> <input type="text" ref={textInput} /> <input type="button" value="Donner le focus au champ texte" onClick={handleClick} /> </div> ); }