Custom component no longer working with newer streamlit API.  Workaround is to use streamlit's new builtin support to [render html in iframes](https://docs.streamlit.io/library/components/components-api#create-a-static-component). ```py st.components.v1.html(report.to_html(), height=2000, scrolling=True) ```