Spaces:
Runtime error
Runtime error
| import streamlit as st | |
| import time | |
| # st.logo("") | |
| c = st.container() | |
| st.markdown(""" | |
| section | |
| --- | |
| another | |
| """) | |
| st.divider() | |
| col1, col2 = st.columns(2) | |
| col1.write("Hi") | |
| col2.write("there") | |
| with col1: | |
| st.write("This is col1") | |
| with col2: | |
| st.write("Another col2") | |
| with col1: | |
| st.write("again?") | |
| "magic" | |
| c.write("Writing into the container") | |
| time.sleep(3) | |
| st.write("At the end...") | |
| c.write("At the top...") |