node.tsx 310 B

12345678910111213
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import type { CodeNodeType } from './types'
  4. import type { NodeProps } from '@/app/components/workflow/types'
  5. const Node: FC<NodeProps<CodeNodeType>> = () => {
  6. return (
  7. // No summary content
  8. <div></div>
  9. )
  10. }
  11. export default React.memo(Node)