Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,10 @@ def display_image():
|
|
14 |
return show_image()
|
15 |
|
16 |
with gr.Blocks() as demo:
|
17 |
-
gr.Markdown("
|
|
|
|
|
|
|
18 |
title_button.render()
|
19 |
title_button.click(display_image, inputs=None, outputs=image_output)
|
20 |
image_output.render()
|
|
|
14 |
return show_image()
|
15 |
|
16 |
with gr.Blocks() as demo:
|
17 |
+
gr.Markdown("""
|
18 |
+
<h1 style='text-decoration: underline; cursor: pointer;'>The Peddler's Magic Seeds</h1>
|
19 |
+
<p>Click the title of the story to look at the image.</p>
|
20 |
+
""")
|
21 |
title_button.render()
|
22 |
title_button.click(display_image, inputs=None, outputs=image_output)
|
23 |
image_output.render()
|