JSFiddle - React, Tailwind, and code Playground

by Maksim Kalenich

HTML

<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCGOKv05vyqe_qu55d96Pc9vRsuoVx40kE&amp;callback=initMap"></script>
<div id="map"></div>

CSS

html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }
#map {
  width: 100%;
  height: 100%;
}

JavaScript

var map;
function initMap() {
	map = new google.maps.Map(document.getElementById('map'), {
  center: {lat: -34.397, lng: 150.644},
 		zoom: 8
  });
}