JSFiddle - React, Tailwind, and code Playground

by Tyler N.

JavaScript

$('element').hover(
    function() {
        $(this).addClass('over');
    },
    function() {
        $(this).removeClass('over');
    }
);