VDay / app.py
mwe11s's picture
Update app.py
1c4d2f8
raw
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??")