mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
13 lines
240 B
Python
13 lines
240 B
Python
|
import gradio as gr
|
||
|
|
||
|
with gr.Blocks() as demo:
|
||
|
with gr.Tab():
|
||
|
gr.HTML("<p>hi</p>")
|
||
|
with gr.Tab():
|
||
|
gr.Dataframe(
|
||
|
value=[[i + 1] for i in range(10)],
|
||
|
)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
demo.launch()
|