mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
7 lines
174 B
Python
7 lines
174 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Markdown(value="This _example_ was **written** in [Markdown](https://en.wikipedia.org/wiki/Markdown)\n")
|
|
|
|
demo.launch()
|