Spaces:
Sleeping
Sleeping
File size: 182 Bytes
ce94c38 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
with gr.Blocks() as demo:
gr.Dropdown(["abc", "def"])
btn = gr.Button("def")
t = gr.Textbox()
btn.click(lambda : "test", None, t)
demo.launch() |