Circularmachines
commited on
Commit
•
aca188e
1
Parent(s):
ca45677
app.py updates
Browse files
app.py
CHANGED
@@ -45,4 +45,10 @@ with Image.open("kitty.jpeg") as img:
|
|
45 |
|
46 |
if point not in st.session_state["points"]:
|
47 |
st.session_state["points"]=[point]
|
48 |
-
st.experimental_rerun()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
if point not in st.session_state["points"]:
|
47 |
st.session_state["points"]=[point]
|
48 |
+
st.experimental_rerun()
|
49 |
+
|
50 |
+
|
51 |
+
if st.button('Say hello'):
|
52 |
+
st.write('Why hello there')
|
53 |
+
else:
|
54 |
+
st.write('Goodbye')
|