mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-05 11:10:03 +08:00
10 lines
174 B
Python
10 lines
174 B
Python
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()
|