mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
a33ac77a22
Co-authored-by: CodingOnStar <hanxujiang@dify.ai>
24 lines
448 B
TypeScript
24 lines
448 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)
|