JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://calebjacob.com/tooltipster/js/jquery.tooltipster.js"></script>
<link rel="stylesheet" href="http://calebjacob.com/tooltipster/css/tooltipster.css">
<a href="#" class="tooltip" title="Mensaje del tooltip.">Tooltip!</a>

JavaScript

$(document).ready(function() {
    $('.tooltip').tooltipster();
});