'use client' import type { ReactNode } from 'react' import { ScrollArea } from '@langgenius/dify-ui/scroll-area' type IntegrationSectionLayoutProps = { bodyClassName?: string children: ReactNode label?: string } export function IntegrationSectionLayout({ bodyClassName, children, label, }: IntegrationSectionLayoutProps) { return (
{children}
) }