Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const { inputProps = {}, popoverProps = {} } = this.props;
const { isOpen, selectedItem } = this.state;
const { handleKeyDown, handleKeyUp } = listProps;
const { placeholder = 'Search...' } = inputProps;
const selectedItemText = selectedItem ? this.props.inputValueRenderer(selectedItem) : '';
return (
<div>
{listProps.itemList}
</div>