JSFiddle - React, Tailwind, and code Playground
by kiokotzu
HTML
<button>HAGA CLICK AQUÍ</button>
<button>HAGA CLICK AQUÍ</button>
JavaScript
$(function(){
$('button').toggle(function() {
$(this).text("YA HIZO CLICK");
}, function() {
$(this).text("HAGA CLICK AQUÍ");
});
});