BioAge-Tool / app.R
Wikki13's picture
Update app.R
f6b8569 verified
raw
history blame
147 Bytes
# app.R
library(shiny)
# Source the UI and Server files
source("ui.R")
source("server.R")
# Run the Shiny app
shinyApp(ui = ui, server = server)