pere commited on
Commit
2e0d3e0
·
1 Parent(s): 640125c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -50,14 +50,14 @@ form.text_input(label='Enter some text')
50
 
51
 
52
  #More stuff to try
53
- col1, col2, col3 = form.columns([1,1,1])
54
 
55
  with col1:
56
- form.button('1')
57
  with col2:
58
- form.button('2')
59
  with col3:
60
- form.button('3')
61
 
62
  submit_button = form.form_submit_button(label='Submit')
63
  #https://blog.streamlit.io/introducing-submit-button-and-forms/
 
50
 
51
 
52
  #More stuff to try
53
+ col1, col2, col3 = at.columns([1,1,1])
54
 
55
  with col1:
56
+ at.button('1')
57
  with col2:
58
+ st.button('2')
59
  with col3:
60
+ st.button('3')
61
 
62
  submit_button = form.form_submit_button(label='Submit')
63
  #https://blog.streamlit.io/introducing-submit-button-and-forms/