13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
import type {NodeProps} from '@xyflow/react'
|
|
import AmisNode, {outputsFormColumns} from './AmisNode.tsx'
|
|
import React from 'react'
|
|
|
|
const OutputNode = (props: NodeProps) => AmisNode({
|
|
nodeProps: props,
|
|
type: 'end',
|
|
defaultNodeName: '输出节点',
|
|
defaultNodeDescription: '定义输出变量',
|
|
columnSchema: () => outputsFormColumns(true),
|
|
})
|
|
|
|
export default React.memo(OutputNode) |