JSFiddle - React, Tailwind, and code Playground
HTML
<body>
</body>
CSS
body {
background: #fff
}
JavaScript
navigator.geolocation.getCurrentPosition(function(pos){
document.write('lat: ' + pos.coords.latitude + ' long: ' + pos.coords.longitude)
})