Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
christopher
/
pagination
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d50f165
pagination
/
app.py
cakiki
Update app.py
d50f165
over 2 years ago
raw
Copy download link
history
blame
229 Bytes
import
gradio
as
gr
with
gr.Blocks(css=
"#b {min-width:15px;background:transparent;}"
)
as
demo:
with
gr.Row():
[gr.Button(value=
str
(i), elem_id=
"b"
).style(full_width=
False
)
for
i
in
range
(
10
)]
demo.launch(debug=
True
)