JSFiddle - React, Tailwind, and code Playground

Autocomplete 3LC

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<input type="text" id="depart" />

CSS

body { font-family: Verdana; font-size: 12px; }

JavaScript

$(function () {
    var Airports = [
        { "label": "DMB -      Dzhambyl, Dzhambyl Airport", "value": "DMB" }, 
        { "label": "EMA - Nottingham, Nottingham East Midlands Airport", "value": "EMA" }, 
        { "label": "HAM - Hamburg, Hamburg Airport", "value": "HAM" }    
    ];


	$("#depart").autocomplete({
     source: Airports,
     minLength: 3
  });

});