Files
dify/web/app/components/workflow/nodes/llm/node.tsx
2024-02-18 14:08:08 +08:00

19 lines
322 B
TypeScript

import type { FC } from 'react'
import { useTranslation } from 'react-i18next'
import BaseNode from '../_base/node'
const i18nPrefix = 'workflow.nodes.llm'
const Node: FC = () => {
const { t } = useTranslation()
return (
<BaseNode>
<div>
llm
</div>
</BaseNode>
)
}
export default Node