pagination / app.py
cakiki's picture
Create app.py
f192795
raw
history blame
108 Bytes
import gradio as gr
with gr.Blocks() as demo:
[gr.Button() for i in range(10)]
demo.launch(debug=True)