import React, { Component } from 'react'; import { Select as ASelect } from 'antd'; import './index.less'; export default class Multiple extends Component { render() { const { select = [] } = this.props; return ( {select.map((i, index) => { if (typeof i === 'string') { return ( {i} ); } return ( {i.name || i.title || i.label} ); })} ); } }