chansung commited on
Commit
0d32d53
1 Parent(s): 433b752

Create main.py

Browse files
Files changed (1) hide show
  1. main.py +6 -0
main.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks() as demo:
4
+ gr.Markdown("hello world")
5
+
6
+ demo.queue().launch()