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