pagination / app.py
cakiki's picture
Update app.py
e54d564
raw
history blame
167 Bytes
import gradio as gr
with gr.Blocks() as demo:
with gr.Row():
[gr.Button(value=str(i)).style(full_width=False) for i in range(10)]
demo.launch(debug=True)