shiny-test / app.R
rajistics's picture
more
27e0aed
raw
history blame
No virus
151 Bytes
library(shiny)
ui <- fluidPage(
titlePanel("Example Shiny Application")
)
server <- function(input, output) {
}
shinyApp(ui = ui, server = server)