File size: 194 Bytes
2d729aa
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

str = """hello
newline
newline"""

with gr.Blocks() as demo:
    with gr.Tab():
        gr.Textbox(value=str)
    with gr.Tab():
        gr.Textbox(value=str)

demo.launch()