Select console prompt warns antd

console prompts the following warnings:
Warning: the children of Select should be Select.Option or Select.OptGroup , instead of Option .


<Select
              showSearch
              style={{ width: 260,height: 32 }}
              placeholder={this.state.userSele}
              optionFilterProp="children"
              allowClear={true}
              onChange={this.stockCodeSelect}
              filterOption={(input,option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
            >
              {
                arr.map((item,index) => (
                  <Option value={item.CODE} key={index}>{item.NAME}</Option>
                )) 
              }
            </Select>
Mar.07,2021

is it true that you have no reference in the referenced location, const Option = Select.Option;

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b22560-2b5fa.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b22560-2b5fa.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?