mirror of
https://github.com/langgenius/dify.git
synced 2026-07-25 05:28:35 +08:00
16 lines
417 B
TypeScript
16 lines
417 B
TypeScript
'use client'
|
|
import type { InitialDocumentDetail } from '@/models/pipeline'
|
|
import { memo } from 'react'
|
|
import Processing from '../processing'
|
|
|
|
type StepThreeContentProps = {
|
|
batchId: string
|
|
documents: InitialDocumentDetail[]
|
|
}
|
|
|
|
const StepThreeContent = ({ batchId, documents }: StepThreeContentProps) => {
|
|
return <Processing batchId={batchId} documents={documents} />
|
|
}
|
|
|
|
export default memo(StepThreeContent)
|