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 7150aa7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tests/bug_0025/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 7150aa7

Please sign in to comment.