Ideas / app.py
qqwjq1981's picture
Update app.py
7911601 verified
raw
history blame
166 Bytes
import gradio as gr
def on_button_click():
return "Button clicked!"
iface = gr.Interface(fn=on_button_click, inputs=gr.Button(), outputs="text")
iface.launch()