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

14 lines
238 B
TypeScript

import type { FC } from 'react'
import * as React from 'react'
const FileItem: FC = () => {
return (
<div
className="h-6 rounded bg-gray-100"
data-component="file-item"
/>
)
}
export default React.memo(FileItem)