mirror of
https://github.com/langgenius/dify.git
synced 2026-02-18 08:54:40 +08:00
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)
|