JSFiddle - React, Tailwind, and code Playground
HTML
<div id="test"></div>
CSS
#test{
width:100%;
height:auto;
border:1px solid black;
margin: 15px;
}
JavaScript
$.get({
url: "https://10.10.35.231:8443/esm/api/",
success: function(data, status, jqXHR) { $('#test').html(data);},
type: "json"});