dummy_mkdwn / app.py
ysharma's picture
ysharma HF Staff
create dummy
3d7915a
raw
history blame contribute delete
254 Bytes
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()