gr-4_29_0-js / app.py
pngwn's picture
pngwn HF Staff
Create app.py
c7c75bb verified
raw
history blame contribute delete
220 Bytes
import gradio as gr
js = """
function test_function_js() {}
"""
def function():
pass
with gr.Blocks() as app:
button = gr.Button()
button.click(
fn=function,
js=js,
)
app.launch()