function CustomTextInput(props) { const textInput = useRef(null); function handleClick() { textInput.current.focus(); } return (
);}