File size: 219 Bytes
732fdf3
 
63299ec
148e7e9
0feaf78
732fdf3
 
1
2
3
4
5
6
7
8
import streamlit as st

st.title("This is our app")
st.write("This is just a random para meant to fill out the space over here till we have something")

x = st.slider('Select a value')
st.write(x, ' squared is', x * x)