aliabid94 HF staff commited on
Commit
7ca2db3
1 Parent(s): 07a9690

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ f = gr.File()
5
+ f2 = gr.File()
6
+ btn = gr.Button()
7
+
8
+ btn.click(lamda x:x, f, f2)
9
+
10
+ demo.launch()