'use client' import type { ReactNode } from 'react' import { cn } from '@langgenius/dify-ui/cn' type AgentDetailSectionSurfaceProps = { children: ReactNode className?: string label: string panelClassName?: string } export function AgentDetailSectionSurface({ children, className, label, panelClassName, }: AgentDetailSectionSurfaceProps) { return (
{children}
) }