JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#" class="abcClass">Link To Something</a>

JavaScript

$(function() {
   $('.abcClass').hover( function(){
      $(this).css('color', 'red');
   },
   function(){
      $(this).css('color', 'green');
   });
});