Files
dify/web/app/components/workflow/skill/files.tsx
2026-01-14 16:28:14 +08:00

18 lines
352 B
TypeScript

import type { FC, PropsWithChildren } from 'react'
import * as React from 'react'
type FilesProps = PropsWithChildren
const Files: FC<FilesProps> = ({ children }) => {
return (
<div
className="flex flex-1 flex-col gap-2 overflow-auto"
data-component="files"
>
{children}
</div>
)
}
export default React.memo(Files)