MCPcopy Create free account
hub / github.com/algorithm-visualizer/algorithm-visualizer / render

Method render

src/core/layouts/Layout.js:41–52  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

39 }
40
41 render() {
42 const horizontal = this instanceof HorizontalLayout;
43
44 return (
45 <ResizableContainer key={this.key} ref={this.ref} weights={this.weights} horizontal={horizontal}
46 onChangeWeights={this.handleChangeWeights}>
47 {
48 this.children.map(tracer => tracer && tracer.render())
49 }
50 </ResizableContainer>
51 );
52 }
53}
54
55export default Layout;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected