feat(ide): 添加复杂流程编排功能
parent
3cf8e605c5
commit
5a456d046f
@ -0,0 +1,11 @@
|
||||
import React, { useEffect, useState } from 'react';
|
||||
import FlowEditor from '@/pages/flowEditor/index';
|
||||
|
||||
const complexContainer = ({ selected }) => {
|
||||
|
||||
return (
|
||||
<FlowEditor initialData={selected.compData || {}} useDefault={true} />
|
||||
);
|
||||
};
|
||||
|
||||
export default complexContainer;
|
||||
Loading…
Reference in New Issue