JSFiddle - React, Tailwind, and code Playground
by Alex Azuero
HTML
<!DOCTYPE html>
<html>
<head>
<title>Hello, Map</title>
<meta charset="utf-8" />
<!--Load the esri css and the latest JavaScript CDN-->
<link rel="stylesheet" href="http://js.arcgis.com/3.15/esri/css/esri.css">
<script src="http://js.arcgis.com/3.15/"></script>
<!--Everything goes into the head section-->
<script>
var map;
require([
"esri/map"],
function (
Map ) {
map = new Map("Map", {
basemap: "dark-gray"//,
//sliderOrientation: "horizontal"
});
});
</script>
</head>
<body>
<div id="Map" style="width:100%; height:600px" />
</body>
</html>
<body class="claro">
<div id="map"></div>
</body>
</html>