DenCT commited on
Commit
3abf916
·
verified ·
1 Parent(s): 8def128

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
+ with gr.Column():
5
+ gr.TextArea()
6
+
7
+ if __name__ == "__main__":
8
+ demo.launch()