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