@rxflow/base
Version:
BaseFlow - 核心 Flow 组件库
19 lines (18 loc) • 424 B
JavaScript
/**
* @author: yanxianliang
* @date: 2025-07-03 09:38
* @desc: base layout
*
* 不自动布局,直接返回外部节点和边
*
* Copyright (c) 2025 by yanxianliang, All Rights Reserved.
*/
export var baseLayout = function baseLayout(_ref) {
var nodeTypes = _ref.nodeTypes,
originNodes = _ref.originNodes,
originEdges = _ref.originEdges;
return {
nodes: originNodes,
edges: originEdges
};
};