R/run_app.R

Defines functions paper_dig

Documented in paper_dig

#' Run the Shiny Application
#'
#' @param ... A series of options to be used inside the app.
#'
#' @export
#' @importFrom shiny shinyApp
#' @importFrom golem with_golem_options
paper_dig <- function(
  ...
) {
  with_golem_options(
    app = shinyApp(
      ui = app_ui, 
      server = app_server
    ), 
    golem_opts = list(...)
  )
}
KiayangQ/paperdigger documentation built on Dec. 31, 2020, 2:09 p.m.