()
| 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 | |
| 55 | export default Layout; |
nothing calls this directly
no outgoing calls
no test coverage detected