JSFiddle - React, Tailwind, and code Playground

CSS

div#foo {
    height: 100px;
    background: #ccc;
}

JavaScript

jQuery('<div/>', {  
    id: 'foo',  
    css: {  
        fontWeight: 700,  
        color: 'green'  
    },  
    click: function(){  
        alert('Foo has been clicked!');  
    }
}).appendTo('body');

alert('1');