R/run_app.R

Defines functions run_app

Documented in run_app

#' Run the Shiny App
#'
#' @export
run_app <- function() {
  shiny::shinyApp(
    ui <- shiny::shinyUI( # nolint indeed, ui is not yet used
      snackman::snackman_html()
    ),
    server <- function(input, output, session) { # nolint indeed, server is not yet used
    }
  )
}
informalr/snackman documentation built on March 31, 2021, 2:39 a.m.