import React from 'react'; import { Select } from 'antd'; const { Option } = Select; function DDMultiSelectField(props) { const { options, disabled, onChange } = props; return ( ); } export default DDMultiSelectField;