Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -93,9 +93,9 @@ col1, col2, col3 = st.columns([3,1,1])
|
|
93 |
|
94 |
|
95 |
# Insert containers separated into tabs:
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
|
100 |
|
101 |
# Stop execution immediately:
|
|
|
93 |
|
94 |
|
95 |
# Insert containers separated into tabs:
|
96 |
+
tab1, tab2 = st.tabs(["Tab 1", "Tab2"])
|
97 |
+
tab1.write("this is tab 1")
|
98 |
+
tab2.write("this is tab 2")
|
99 |
|
100 |
|
101 |
# Stop execution immediately:
|