mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 19:03:09 +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) |