File size: 252 Bytes
0bd62e5
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()