UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

27 lines (25 loc) 480 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.baseLayout = void 0; /** * @author: yanxianliang * @date: 2025-07-03 09:38 * @desc: base layout * * 不自动布局,直接返回外部节点和边 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ const baseLayout = ({ nodeTypes, originNodes, originEdges }) => { return { nodes: originNodes, edges: originEdges }; }; exports.baseLayout = baseLayout;