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...
3bb5550
clearbutton_component
/
run.py
aliabd
HF Staff
Upload folder using huggingface_hub
4b4a662
verified
9 months ago
raw
Copy download link
history
blame
Safe
173 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()