mwe11s commited on
Commit
1c4d2f8
·
1 Parent(s): 6aae45d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -1,6 +1,8 @@
1
  import streamlit as st
2
 
3
- st.write("Will you be my Valentine?")
4
- st.button("Yes", type="secondary")
5
- st.button("No", type="primary")
 
 
6
 
 
1
  import streamlit as st
2
 
3
+ st.title("Will you be my Valentine?")
4
+ if st.button("Yes", type="secondary"):
5
+ st.text("Yay!!")
6
+ if st.button("No", type="primary"):
7
+ st.text("Are you sure??")
8