mirror of
https://github.com/langgenius/dify.git
synced 2025-07-14 12:41:35 +00:00
13 lines
297 B
TypeScript
13 lines
297 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>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Node)
|