JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">content</div>
JavaScript
$(function(){
$.ajax({
url:'/echo/html/',
type:'GET',
success:function(res){
$("#container").html(res);
}
});
});