interface FormItemProps { label: string name: string children?: React.ReactNode } export function FormItem({ label, name, children, ...props }: FormItemProps) { return (
{children}
) }