JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<div id="div1">初期テキスト</div>

JavaScript

$('#div1').mouseenter(function() {
    $(this).text('のせたって');
}).mouseleave(function() {
    $(this).text('はなしたった');
});