-
-
Save yushanwebdev/1a97ed6f9a449b0986f150029bd4f61d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useRef } from "react"; | |
const CustomTextInput = () => { | |
const textInput = useRef(); | |
focusTextInput = () => textInput.current.focus(); | |
return ( | |
<> | |
<input type="text" ref={textInput} /> | |
<button onClick={focusTextInput}>Focus the text input</button> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment