render()

in src/components/utilities/split-panel/index.js [493:512]


  render() {
    const {className, style} = this.props;
    return (
      <div
        className={`split-panel ${className}`}
        ref={this.initializeSplitPane}
        style={Object.assign(
          {
            width: '100%',
            height: '100%',
            display: 'flex',
            flexDirection: this.isVertical ? 'column' : 'row',
          },
          style || {},
        )}
      >
        {this.totalSize ? this.renderSplitPaneContent() : undefined}
      </div>
    );
  }