JSFiddle - React, Tailwind, and code Playground

by phoenix_suresh

HTML

<div id="result"></div>

CSS

#result {
    display:block;
    height:200px;
    width:200px;
    border: 1px solid red;
        
}

JavaScript

$(document).ready(function() {
    $("#result").html("this is a test message");
});