()
| 31 | }; |
| 32 | |
| 33 | render() { |
| 34 | const { options } = this.state; |
| 35 | return ( |
| 36 | <Select |
| 37 | mode="combobox" |
| 38 | notFoundContent={false} |
| 39 | style={{ width: 200 }} |
| 40 | onChange={this.onChange} |
| 41 | onSelect={this.onSelect} |
| 42 | placeholder="请输入账户名" |
| 43 | > |
| 44 | {options} |
| 45 | </Select> |
| 46 | ); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | export default Test; |
nothing calls this directly
no outgoing calls
no test coverage detected