Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
gradio/hello_world_main
abidlabs
/
hello_world_main
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
989629c
hello_world_main
/
run.py
abidlabs
HF Staff
Update run.py
989629c
verified
13 days ago
raw
Copy download link
history
blame
249 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
btn = gr.Button()
@gr.render(
triggers=[btn.click]
)
def
test_render
():
with
gr.Tab():
gr.Markdown(
"abcde"
)
# gr.Gallery([("cat.jpg", "cat")]*3)
demo.launch()