Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.bar_chart({"data": [1, 5, 2, 6, 2, 1]}) | |
with st.expander("See explanation"): | |
st.write(''' | |
The chart above shows some numbers I picked for you. | |
I rolled actual dice for these, so they're *guaranteed* to | |
be random. | |
''') |