Spaces:
Runtime error
Runtime error
File size: 501 Bytes
7e1d52d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 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...") |