Prakash N
added title and subheader
63299ec
raw
history blame
218 Bytes
import streamlit as st
st.title("This is our app")
st.text("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)