const DropdownSelectorInput = ( { checked, getInputProps, inputRef, isDisabled, onFocus, onRemoveItem, placeholder, tabIndex, value, } ) => { return ( 0 ) { onRemoveItem( checked[ checked.length - 1 ] ); } }, placeholder, tabIndex, } ) } /> ); }; export default DropdownSelectorInput;