File size: 301 Bytes
bfac074
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
with gr.Blocks(title='test Blocks') as demo:
    with gr.Box():
        with gr.Row():
            with gr.Column():
                gr.Text(value='1')
                gr.Text(value='2')
            with gr.Column():
                gr.Text(value='3')
                gr.Text(value='4')
demo.launch()