MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / render

Method render

packages/workspace/src/view/resource-view.tsx:14–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12 resource: IResource;
13}, any> {
14 render() {
15 const { skeleton } = this.props.resource;
16 const { editorViews } = this.props.window;
17 return (
18 <div className="workspace-resource-view">
19 <TopArea area={skeleton.topArea} itemClassName="engine-actionitem" />
20 <div className="workspace-editor-body">
21 {
22 Array.from(editorViews.values()).map((editorView: any) => {
23 return (
24 <EditorView
25 key={editorView.name}
26 active={editorView.active}
27 editorView={editorView}
28 />
29 );
30 })
31 }
32 </div>
33 </div>
34 );
35 }
36}

Callers

nothing calls this directly

Calls 2

mapMethod · 0.65
fromMethod · 0.65

Tested by

no test coverage detected