JSFiddle - React, Tailwind, and code Playground
HTML
<button>hola</button>
<button>esteban</button>
JavaScript
$(document).ready(function(){
$('button').hover(function() {
texto = $('button').text();
$(this).text('Registrese');
}, function() {
$(this).text(texto);
});
});