Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.button("Reset", type="primary")
4
+ if st.button('Say hello'):
5
+ st.write('Why hello there')
6
+ else:
7
+ st.write('Goodbye')