dify/web/app/components/workflow/nodes/sleep/node.tsx

11 lines
269 B
TypeScript
Raw Normal View History

2025-01-08 18:34:30 +08:00
import type { FC } from 'react'
import React from 'react'
import type { SleepNodeType } from './types'
import type { NodeProps } from '@/app/components/workflow/types'
const Node: FC<NodeProps<SleepNodeType>> = () => {
return null
}
export default React.memo(Node)