{ this.state.dropDownItems?.length > 0 ? this.state.dropDownItems : null }
);
}
}
CountryDropdown.defaultProps = {
options: null,
floatingLabel: null,
handleFocus: null,
handleBlur: null,
value: null,
errorMessage: null,
errorCode: null,
};
CountryDropdown.propTypes = {
options: PropTypes.arrayOf(PropTypes.object),
floatingLabel: PropTypes.string,
handleFocus: PropTypes.func,
handleBlur: PropTypes.func,
value: PropTypes.string,
errorMessage: PropTypes.string,
errorCode: PropTypes.string,
name: PropTypes.string.isRequired,
};
export default onClickOutside(CountryDropdown);