File size: 135 Bytes
b5a56eb
 
 
 
 
546f8c3
b5a56eb
1
2
3
4
5
6
7
import gradio as gr

def main():
    return gr.HTML("<h1>Test</h1>")

demo = gr.Interface(fn=main, inputs=[], outputs=[])
demo.launch()