mirror of
https://github.com/langgenius/dify.git
synced 2025-07-17 14:22:06 +00:00
15 lines
364 B
TypeScript
15 lines
364 B
TypeScript
![]() |
import type { FC } from 'react'
|
||
|
import { memo } from 'react'
|
||
|
import type { DataSourceNodeType } from './types'
|
||
|
import type { NodePanelProps } from '@/app/components/workflow/types'
|
||
|
|
||
|
const Panel: FC<NodePanelProps<DataSourceNodeType>> = () => {
|
||
|
return (
|
||
|
<div className='mb-2 mt-2 space-y-4 px-4'>
|
||
|
datasource
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default memo(Panel)
|