mirror of
https://github.com/langgenius/dify.git
synced 2025-07-16 13:50:18 +00:00
14 lines
341 B
TypeScript
14 lines
341 B
TypeScript
import type { FC } from 'react'
|
|
import { memo } from 'react'
|
|
import type { DataSourceNodeType } from './types'
|
|
import type { NodeProps } from '@/app/components/workflow/types'
|
|
const Node: FC<NodeProps<DataSourceNodeType>> = () => {
|
|
return (
|
|
<div className='mb-1 px-3 py-1'>
|
|
DataSource
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Node)
|