JSFiddle - React, Tailwind, and code Playground
HTML
<body onload="loadiframe()">
<div id="rn_iframe">test</div>
</body>
JavaScript
function loadiframe(){
//alert("url: " + window.location.hash.substr(1));
document.getElementById("rn_iframe").innerHTML = "<iframe id=\"rn_iframe\" height=700 width=700 src=http://google.com></iframe>";
}