Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Chrysoula
/
ArmadaApp
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ArmadaApp
/
app.py
Chrysoula
Update app.py
8cdbc24
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
211 Bytes
import
streamlit
as
st
#x = st.slider('Select a value')
#st.write(x, 'squared is', x * x)
st.title(
'Armada Competition'
)
if
st.button(
'Say hello'
):
st.write(
'Why hello there'
)
else
:
st.write(
'Goodbye'
)