Borya-Goldarb commited on
Commit
c30de8c
·
verified ·
1 Parent(s): 53dacd7

Update pages/comps_data.py

Browse files
Files changed (1) hide show
  1. pages/comps_data.py +6 -9
pages/comps_data.py CHANGED
@@ -35,20 +35,17 @@ def create_filters():
35
  # Layout
36
  st.title('Streamlit App with Multiple Sections')
37
 
38
- # Define layout columns
39
- left_column, right_column = st.beta_columns(2)
40
-
41
  # Section 1 - List in the right top corner
42
- with right_column:
43
- create_checkbox_list()
44
 
45
  # Section 2 - Map in the left top corner
46
- with left_column:
47
- create_map()
48
 
49
  # Section 3 - List in the right bottom corner
50
- with right_column:
51
- create_checkbox_list()
52
 
53
  # Section 4 - Filters
54
  create_filters()
 
35
  # Layout
36
  st.title('Streamlit App with Multiple Sections')
37
 
 
 
 
38
  # Section 1 - List in the right top corner
39
+ st.subheader('List with Checkboxes (Right Top Corner)')
40
+ create_checkbox_list()
41
 
42
  # Section 2 - Map in the left top corner
43
+ st.subheader('Map (Left Top Corner)')
44
+ create_map()
45
 
46
  # Section 3 - List in the right bottom corner
47
+ st.subheader('List with Checkboxes (Right Bottom Corner)')
48
+ create_checkbox_list()
49
 
50
  # Section 4 - Filters
51
  create_filters()