Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,5 +3,7 @@ import gradio as gr
|
|
| 3 |
with open("frontend.html", "r") as f:
|
| 4 |
html_code = f.read()
|
| 5 |
|
| 6 |
-
gr.
|
| 7 |
-
gr.HTML(html_code)
|
|
|
|
|
|
|
|
|
| 3 |
with open("frontend.html", "r") as f:
|
| 4 |
html_code = f.read()
|
| 5 |
|
| 6 |
+
with gr.Blocks() as demo:
|
| 7 |
+
gr.HTML(html_code)
|
| 8 |
+
|
| 9 |
+
demo.launch()
|