Spaces:
Sleeping
Sleeping
fix
Browse files
app.py
CHANGED
|
@@ -19,7 +19,9 @@ with gr.Blocks() as demo:
|
|
| 19 |
)
|
| 20 |
gr.LoginButton()
|
| 21 |
gr.LogoutButton()
|
| 22 |
-
gr.Markdown()
|
| 23 |
-
gr.Markdown()
|
|
|
|
|
|
|
| 24 |
|
| 25 |
demo.launch()
|
|
|
|
| 19 |
)
|
| 20 |
gr.LoginButton()
|
| 21 |
gr.LogoutButton()
|
| 22 |
+
m1 = gr.Markdown()
|
| 23 |
+
m2 = gr.Markdown()
|
| 24 |
+
demo.load(hello, inputs=None, outputs=m1)
|
| 25 |
+
demo.load(list_organizations, inputs=None, outputs=m2)
|
| 26 |
|
| 27 |
demo.launch()
|