JSFiddle - React, Tailwind, and code Playground
HTML
<p class="text">hello</p>
JavaScript
$('.text').on('mouseenter',function(){
$(this).html('world');
});
$('.text').on('mouseleave',function(){
$(this).html('hello');
})