Iframe appears invisible

I used to had the problem on Firefox while Chrome was working fine.

I solved it by adding a timeout to my React component render, something like this:

setTimeout(() => { ReactDOM.render( <App />, document.getElementById('root')) }, 1)