import * as React from "react" import { useFormContext } from "react-hook-form" import { FormField, FormItem, FormControl, FormLabel } from "@/components/ui/form" import { Input } from "@/components/ui/input" import { LinkFormValues } from "./schema" interface TitleInputProps { urlFetched: string | null } export const TitleInput: React.FC = ({ urlFetched }) => { const form = useFormContext() return ( ( Title )} /> ) }