"use client" import { ReactNode } from "react" import { Label } from "@/components/ui/label" import { cn } from "@/lib/utils" interface FormSectionProps { title: string description?: string children: ReactNode className?: string } export function FormSection({ title, description, children, className }: FormSectionProps) { return (
{description}
)}