Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
clearbutton_component
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d778c2b
clearbutton_component
/
run.py
aliabd
HF Staff
Upload folder using huggingface_hub
f28825b
almost 2 years ago
raw
Copy download link
history
blame
Safe
174 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
textbox = gr.Textbox(value=
"This is some text"
)
gr.ClearButton(textbox)
if
__name__ ==
"__main__"
:
demo.launch()