Spaces:
Running
Running
File size: 199 Bytes
9c88354 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import gradio as gr
CSS = """
"""
with gr.Blocks(css=CSS) as block:
gr.Markdown(
"""
## Volcano plots
"""
)
block.launch()
|