import { useRef } from 'react'; function SearchForm() { const inputRef = useRef(null); const handleClick = () => { inputRef.current.focus(); }; return (