13 lines
219 B
Python
13 lines
219 B
Python
from shiny import App, ui
|
|
from src import mod_welcome
|
|
|
|
app_ui = ui.page_fluid(
|
|
mod_welcome.welcome_ui("welcome"),
|
|
)
|
|
|
|
|
|
def server(input, output, session):
|
|
mod_welcome.welcome_server()
|
|
|
|
|
|
app = App(app_ui, server)
|