import type { ReactNode } from 'react' import { Label } from '@/components/ui/label' export function FormField({ label, hint, children, }: { label: string hint?: string children: ReactNode }) { return (
{hint}