mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
6 lines
142 B
Python
6 lines
142 B
Python
|
import gradio as gr
|
||
|
|
||
|
with gr.Blocks() as demo:
|
||
|
gr.CheckboxGroup(choices=["First Choice", "Second Choice", "Third Choice"])
|
||
|
|
||
|
demo.launch()
|