Prakash N
added title and subheader
148e7e9
raw
history blame
219 Bytes
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)