sanjanb commited on
Commit
ce0ddaf
·
verified ·
1 Parent(s): 2f80d51

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ gr.LoginButton()
5
+ with demo.route("Home"):
6
+ gr.Button("Not Login", interactive=True)
7
+
8
+ demo.launch()