JSFiddle - React, Tailwind, and code Playground

by Deepak Manwal

HTML

<div id="container">content</div>

JavaScript

$(function(){
    $.ajax({
        url:'/echo/html/',
        type:'GET',
        success:function(res){
            $("#container").html(res);
        }
    });

});