Prakash N commited on
Commit
63299ec
·
1 Parent(s): 0feaf78

added title and subheader

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import streamlit as st
2
 
3
- st.header("This is our app")
 
4
 
5
  x = st.slider('Select a value')
6
  st.write(x, ' squared is', x * x)
 
1
  import streamlit as st
2
 
3
+ st.title("This is our app")
4
+ st.text("This is just a random para meant to fill out the space over here till we have something")
5
 
6
  x = st.slider('Select a value')
7
  st.write(x, ' squared is', x * x)