JSFiddle - React, Tailwind, and code Playground

HTML

<p>This is content within the iframe</p>
<p>In 2 seconds time, I'll change the colour of the red box which is contained outside this iframe</p>

JavaScript

window.setTimeout(function() {    
    parent.document.getElementById("box").style.backgroundColor = "#FFCC00";
}, 2000);