This commit is contained in:
StyleZhang
2024-02-06 17:05:26 +08:00
parent 20d5fdea2c
commit a17c0e5bf6
11 changed files with 273 additions and 64 deletions

View 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,
}