How do I get my streamlit component to matching the styling of everything else? Take a look at this minimial example:
import streamlit as st
import streamlit.components.v1 as components
st.markdown("# Hello world!")
components.html("<h1>Hello world!</h1>")
components.html('<div class="markdown-text-container stMarkdown"><h1>Hello world!</h1></div>')
Ideally, I’d like to have the second or third “hello world” look like the first one.