File size: 220 Bytes
cf97a3e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

from zero_spaces_template.gradio_ui.example_ui import ui_block

with gr.Blocks() as demo:
    with gr.Tab(label="Example UI"):
        ui_block.render()

if __name__ == "__main__":
    demo.launch()