JSFiddle - React, Tailwind, and code Playground
by Ben Clayton
HTML
<iframe id="FileFrame" src="about:blank"></iframe>
JavaScript
var doc = document.getElementById('FileFrame').contentWindow.document;
doc.open();
doc.write('<html><head><title></title></head><body>Hello world.</body></html>');
doc.close();