nestorxyz's picture
feat: slider
be34eaa
import streamlit as st
st.title("try my demo app")
st.markdown("this is my description")
x = st.slider("select a value")
st.write(x, "squared is", x * x)