Files
dify/web/app/components/workflow/nodes/llm/node.tsx
2024-02-19 19:44:48 +08:00

14 lines
236 B
TypeScript

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