Seraph19 commited on
Commit
66730da
·
verified ·
1 Parent(s): 676e597

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -187,7 +187,14 @@ submit_button.click(
187
  with demo:
188
  gr.HTML(TITLE)
189
  gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
190
- with gr.Tabs(elem_classes="tab-buttons") as tabs:
 
 
 
 
 
 
 
191
  # ... (your tabs content)
192
  # ... (your submission form)
193
 
 
187
  with demo:
188
  gr.HTML(TITLE)
189
  gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
190
+ with gr.Tabs(elem_classes="tab-buttons") as tabs:
191
+ with gr.TabItem("Leaderboard", id=0):
192
+ # Your leaderboard component here (e.g., Leaderboard(value=LEADERBOARD_DF))
193
+ with gr.TabItem("About", id=1):
194
+ gr.Markdown("This is the about section")
195
+ with gr.TabItem("Submit", id=2):
196
+ # Your model submission form here
197
+ with gr.Tabs(elem_classes="tab-buttons") as tabs:
198
  # ... (your tabs content)
199
  # ... (your submission form)
200