josiauhlol commited on
Commit
1500a44
·
1 Parent(s): ce47143

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +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")
 
1
  import gradio as gr
2
  with gr.Blocks(title="Josiah's Gradio Playground") as playground:
3
+ with gr.Tab("Tabs within Tabs"):
4
+ with gr.Tab("1. first"):
5
  gr.Markdown("you're on 1")
6
+ with gr.Tab("2. third"):
7
  gr.Markdown("you're on second")