JSFiddle - React, Tailwind, and code Playground

by henser

CSS

.star{
    width:10px;
    height:10px;
    background-color:black;
}

JavaScript

$(function(){
    
   $('body').append('<div class="star"></div>');
    
$('body').on('click touchstart', '.star', function(){
    alert('click');
});
    

});