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> = () => { return ( // No summary content
) } export default React.memo(Node)