Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mwe11s
/
VDay
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1c4d2f8
VDay
/
app.py
mwe11s
Update app.py
1c4d2f8
almost 2 years ago
raw
Copy download link
history
blame
189 Bytes
import
streamlit
as
st
st.title(
"Will you be my Valentine?"
)
if
st.button(
"Yes"
,
type
=
"secondary"
):
st.text(
"Yay!!"
)
if
st.button(
"No"
,
type
=
"primary"
):
st.text(
"Are you sure??"
)