textbox-tab-bug / app.py
pngwn's picture
pngwn HF staff
Create app.py
2d729aa verified
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()