JSFiddle - React, Tailwind, and code Playground
HTML
<iframe id="foo" />
JavaScript
var iframe = document.getElementById('foo'),
iframedoc = iframe.contentDocument || iframe.contentWindow.document;
iframedoc.body.innerHTML = 'Hello world';