()
| 54 | }; |
| 55 | |
| 56 | render() { |
| 57 | const { treeData } = this.state; |
| 58 | return ( |
| 59 | <TreeSelect |
| 60 | treeDataSimpleMode |
| 61 | style={{ width: '100%' }} |
| 62 | value={this.state.value} |
| 63 | dropdownStyle={{ maxHeight: 400, overflow: 'auto' }} |
| 64 | placeholder="Please select" |
| 65 | onChange={this.onChange} |
| 66 | loadData={this.onLoadData} |
| 67 | treeData={treeData} |
| 68 | /> |
| 69 | ); |
| 70 | } |
| 71 | } |
nothing calls this directly
no outgoing calls
no test coverage detected