Spaces:
Sleeping
Sleeping
Commit
·
ce47143
1
Parent(s):
cb50f76
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
with gr.Blocks(title="Josiah's Gradio Playground") as playground:
|
3 |
+
with gr.Tab(title="Tabs within Tabs"):
|
4 |
+
with gr.Tab(title="1. first"):
|
5 |
+
gr.Markdown("you're on 1")
|
6 |
+
with gr.Tab(title="2. third"):
|
7 |
+
gr.Markdown("you're on second")
|