File size: 147 Bytes
f6b8569
2e09db0
 
f6b8569
 
 
2e09db0
f6b8569
 
1
2
3
4
5
6
7
8
9
10
# 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)