import { type UseFormSetFocus } from "https://deno.land/x/netzo@0.3.91/deps/react-hook-form.ts";
Set focus on a registered field. You can start to invoke this method after all fields are mounted to the DOM.
Examples
Example 1
Example 1
useEffect(() => {
setFocus("name");
}, [setFocus])
// shouldSelect allows to select input's content on focus
<button onClick={() => setFocus("name", { shouldSelect: true })}>Focus</button>
definition: <TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(name: TFieldName, options?: SetFocusOptions) => void