Spaces:
Runtime error
Runtime error
Prakash N
commited on
Commit
·
63299ec
1
Parent(s):
0feaf78
added title and subheader
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
st.
|
|
|
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)
|