cakiki commited on
Commit
f192795
·
1 Parent(s): f2d7d79

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ [gr.Button() for i in range(10)]
5
+
6
+ demo.launch(debug=True)