test / app.py
wenjiao's picture
Update app.py
bfac074 verified
raw
history blame contribute delete
No virus
301 Bytes
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()