public render()

in src/components/TypeTree.tsx [52:64]


  public render () {
    const roots =
      this.props.roots.map((c) => buildTree(c, this.props.selected, this.props.expanded))
    return (
      <Tree
        className='type-tree'
        contents={roots}
        onNodeExpand={this.onNodeExpand}
        onNodeCollapse={this.onNodeCollapse}
        onNodeClick={this.onNodeClick}
      />
    )
  }