Skip to content

Commit

Permalink
Create app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
schloerke committed Feb 16, 2024
1 parent ce68407 commit 85a3200
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tests/bug_0025/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from shiny import App, Inputs, Outputs, Session, ui

import shinyswatch

app_ui = ui.page_navbar(
shinyswatch.theme.cosmo(),
ui.nav_menu(
"Config",
ui.nav_panel(
"Config 1"
),
ui.nav_panel(
"Config 2"
),
),
ui.nav_menu(
"Results",
ui.nav_panel(
"Results 1"
),
ui.nav_panel(
"Results 2"
),
)
)

def server(input: Inputs, output: Outputs, session: Session):
pass


app = App(app_ui, server)

0 comments on commit 85a3200

Please sign in to comment.