R/run_app.R

Defines functions play_jeopardy

Documented in play_jeopardy

#' Run the Shiny Application
#'
#' @export
#' @importFrom shiny shinyApp
#' @importFrom golem with_golem_options
play_jeopardy <- function(...) {
  with_golem_options(
    app = shinyApp(ui = app_ui, server = app_server), 
    golem_opts = list(...)
  )
}
tbradley1013/whatRshiny documentation built on March 30, 2020, 7:56 a.m.