JSFiddle - React, Tailwind, and code Playground
by AndyMP
HTML
<div id="notification">Here is a cool notification</div><p><a class="notificationClose">Close</a>
CSS
#notification {font-size: 30px;}
JavaScript
$(".notificationClose").click(function() {
$("#notification").fadeOut("normal", function() {
$(this).remove();
});
});