Spaces:
Sleeping
Sleeping
Tomas Larsson commited on
Commit ·
fdf8a49
1
Parent(s): 08e4169
Fix
Browse files
app.py
CHANGED
|
@@ -100,12 +100,12 @@ submit_button = st.button('Submit')
|
|
| 100 |
|
| 101 |
|
| 102 |
# Create tabs
|
| 103 |
-
|
| 104 |
|
| 105 |
|
| 106 |
|
| 107 |
# Placeholder for displaying the answer
|
| 108 |
-
with
|
| 109 |
answer_placeholder = st.empty()
|
| 110 |
with Content_tab:
|
| 111 |
content_placeholder = st.empty()
|
|
|
|
| 100 |
|
| 101 |
|
| 102 |
# Create tabs
|
| 103 |
+
Answer_tab, Content_tab, Info_tab = st.tabs(["Answer", "Content used to create answer", "Infrmation about this app"])
|
| 104 |
|
| 105 |
|
| 106 |
|
| 107 |
# Placeholder for displaying the answer
|
| 108 |
+
with Answer_tab:
|
| 109 |
answer_placeholder = st.empty()
|
| 110 |
with Content_tab:
|
| 111 |
content_placeholder = st.empty()
|