hysts HF Staff commited on
Commit
bce7933
·
verified ·
1 Parent(s): e05103b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ name = gr.Textbox(label="Name")
5
+
6
+ with demo.route("Test"):
7
+ gr.LoginButton()
8
+
9
+ demo.launch()