demo-app / app.py
Rocky
Add app file
c404da0
raw
history blame contribute delete
137 Bytes
import streamlit as st
st.title("Test")
st.info("Info......Info.....")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)