mirror of https://github.com/langgenius/dify.git
21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import InfoPanel from '../_base/components/info-panel'
|
|
import type { AnswerNodeType } from './types'
|
|
import type { NodeProps } from '@/app/components/workflow/types'
|
|
|
|
const Node: FC<NodeProps<AnswerNodeType>> = ({
|
|
data,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<div className='px-3'>
|
|
<InfoPanel title={t('workflow.nodes.answer.answer')} content={data.answer} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Node)
|