dify/web/app/components/workflow/nodes/sleep/node.tsx
2025-03-05 00:36:50 +08:00

11 lines
269 B
TypeScript

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)