import { ComponentNode } from "types/global"; const componentConfigList: ComponentNode[] = [ { id: 1, label: "node1", type: "type1", }, { id: 2, label: "node2", type: "type2", }, { id: 3, label: "node3", type: "type1", }, { id: 4, label: "node4", type: "type2", }, { id: 5, label: "node5", type: "type1", }, { id: 6, label: "node6", type: "type2", }, ]; export { componentConfigList };