Finally, let's display the countries below the dropdown:

PHOTO EMBED

Fri Aug 23 2024 17:25:38 GMT+0000 (Coordinated Universal Time)

Saved by @negner

{countries.length > 0 && (
  <>
    <h3>Countries in {inputValue}</h3>
    <div className={isVisible ? "reveal" : ""}>
      <div className="country-contain">
        {countries.map((item, index) => (
          <p key={index} className="country">
            {item.name}
          </p>
        ))}
      </div>
    </div>
  </>
)}
content_copyCOPY