JSFiddle - React, Tailwind, and code Playground

by Evgeny Pisarev

HTML

<div id="app">
  

<div class="box" @mouseover="pointLocation(region.region)"
                    @mouseout="unpointLocation"
                    @mousemove="moveOnLocation">
</div>

<div class="examples__block__map__tooltip">
  {{ pointedLocation }}
</div>

</div>

CSS

.examples__block__map__tooltip {
    position: fixed;
    width: 200px;
    padding: 10px;
    border: 1px solid #a9a9a9;
    background-color: #fff;
}
.box {
  
}