import type { UseFormReturn } from "react-hook-form"; import { FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage } from "~/client/components/ui/form"; import { Input } from "~/client/components/ui/input"; import type { NotificationFormValues } from "../create-notification-form"; type Props = { form: UseFormReturn; }; export const CustomForm = ({ form }: Props) => { return ( ( Shoutrrr URL Direct Shoutrrr URL for power users. See  Shoutrrr documentation  for supported services and URL formats. )} /> ); };