mirror of
https://github.com/langgenius/dify.git
synced 2025-07-07 17:23:22 +00:00
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
![]() |
import type { FC } from 'react'
|
||
|
import React from 'react'
|
||
|
import type { CodeNodeType } from './types'
|
||
|
import type { NodeProps } from '@/app/components/workflow/types'
|
||
|
|
||
|
const Node: FC<NodeProps<CodeNodeType>> = () => {
|
||
|
return (
|
||
|
// No summary content
|
||
|
<div></div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default React.memo(Node)
|