mirror of
https://github.com/langgenius/dify.git
synced 2026-03-04 07:16:20 +08:00
14 lines
236 B
TypeScript
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
|