mirror of
https://github.com/langgenius/dify.git
synced 2026-05-06 10:28:10 +08:00
init
This commit is contained in:
11
web/app/components/workflow/nodes/constants.ts
Normal file
11
web/app/components/workflow/nodes/constants.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import type { ComponentType } from 'react'
|
||||
import StartNode from './start/node'
|
||||
import StartPanel from './start/panel'
|
||||
|
||||
export const NodeMap: Record<string, ComponentType> = {
|
||||
start: StartNode,
|
||||
}
|
||||
|
||||
export const PanelMap: Record<string, ComponentType> = {
|
||||
start: StartPanel,
|
||||
}
|
||||
Reference in New Issue
Block a user