{/* This is the searchInput */}
{loading && 'LOADING'}
{
props.refetch({ searchTerm: e.target.value });
},
})}
/>
{isOpen ? (
{/* This is the Dropdown */}
{items.map((item, index) => (
{item.title}
))}
{!items.length && Nothing Found for {inputValue}...}
) : null}
)}