Is there a way for me to put streamlit components into an HTML div tag. Something along this line:
st.markdown('<div class="my-box">', unsafe_allow_html=True)
st.plotly_chart(fig)
st.markdown('</div>', unsafe_allow_html=True)
Right now when I try to do this it just creates a box and my graph below it. My goal is to try to put the graph inside a created box.