leaderboard / app.py
saattrupdan's picture
Update app.py
546f8c3 verified
raw
history blame
135 Bytes
import gradio as gr
def main():
return gr.HTML("<h1>Test</h1>")
demo = gr.Interface(fn=main, inputs=[], outputs=[])
demo.launch()