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

def fun():
    msg = "This is sample markdown message"
    return msg, msg

with gr.Blocks() as demo:
    b1 =gr.Button()
    text_out = gr.Textbox()
    html_out = gr.HTML()
    b1.click(fun, [], [text_out, html_out])

demo.launch()