13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
import type {NodeProps} from '@xyflow/react'
|
|
import AmisNode, {outputsFormColumns} from './AmisNode.tsx'
|
|
|
|
const EndNode = (props: NodeProps) => AmisNode(
|
|
props,
|
|
'end',
|
|
'结束节点',
|
|
'定义输出变量',
|
|
undefined,
|
|
outputsFormColumns(true),
|
|
)
|
|
|
|
export default EndNode |