JSFiddle - React, Tailwind, and code Playground

HTML

<iframe id="iframe"></iframe>

JavaScript

var doc = document.getElementById('iframe').contentWindow.document;
doc.open();
doc.write('Test');
doc.close();