File size: 136 Bytes
3abf916
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

with gr.Blocks() as demo:
    with gr.Column():
        gr.TextArea()

if __name__ == "__main__":
    demo.launch()