JSFiddle - React, Tailwind, and code Playground

HTML

<div class="featured_products">Example text</div>

CSS

.featured_products {
	height: 300px;
	width: 300px;
	background-color: white;
	color: #000;
}

.featured_products:hover {
	background-color: #00ADDC;
	color: #FFF;
}

JavaScript

$('.featured_products').hover(function(){
	$(this).toggleClass('fp_hover')
})