Spaces:
Sleeping
Sleeping
Update pages/comps_data.py
Browse files- 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
|
| 43 |
-
|
| 44 |
|
| 45 |
# Section 2 - Map in the left top corner
|
| 46 |
-
|
| 47 |
-
|
| 48 |
|
| 49 |
# Section 3 - List in the right bottom corner
|
| 50 |
-
with
|
| 51 |
-
|
| 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()
|