ppsingh commited on
Commit
5b25195
1 Parent(s): 30f0829

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -134,6 +134,12 @@ if col3_one or st.session_state.col3:
134
  st.session_state.col2 = False
135
  st.session_state.col3 = True
136
  st.write("Hello world! 4")
 
 
 
 
 
 
137
 
138
 
139
 
 
134
  st.session_state.col2 = False
135
  st.session_state.col3 = True
136
  st.write("Hello world! 4")
137
+
138
+ if st.button('Refresh'):
139
+ st.session_state.col1 = False
140
+ st.session_state.col2 = False
141
+ st.session_state.col3 = False
142
+
143
 
144
 
145