JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDFTfCu2rXDn78zX7Tc2IEpBuxBYr__WVA&libraries=places"></script> 
<script src="https://rawgit.com/stidges/jquery-searchable/master/dist/jquery.searchable-1.0.0.min.js"></script> 

<input class="location" type="text" />
<br />
<input class="location2" type="text" />

<script>
 // scripts.js custom js file
 $(document).ready(function () {
  google.maps.event.addDomListener(window, 'load', initialize);
 });

 function initialize() {
    var input = document.getElementById('location');
    var input2 = document.getElementById('location2');
    var autocomplete = new google.maps.places.Autocomplete(input);
    var autocomplete = new google.maps.places.Autocomplete(input2);
 }
</script>