Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,6 +2,6 @@ import gradio as gr
|
|
2 |
|
3 |
with gr.Blocks() as demo:
|
4 |
with gr.Row():
|
5 |
-
[gr.Button().style(full_width=False) for i in range(10)]
|
6 |
|
7 |
demo.launch(debug=True)
|
|
|
2 |
|
3 |
with gr.Blocks() as demo:
|
4 |
with gr.Row():
|
5 |
+
[gr.Button(value=i).style(full_width=False) for i in range(10)]
|
6 |
|
7 |
demo.launch(debug=True)
|