mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-24 10:54:04 +08:00
6 lines
137 B
Python
6 lines
137 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Dropdown(choices=["First Choice", "Second Choice", "Third Choice"])
|
|
|
|
demo.launch() |