File size: 220 Bytes
dd0ef30
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st

container = st.container()
container.write("This is inside the container")
st.write("This is outside the container")

# Now insert some more in the container
container.write("This is inside too")