R/run_app.r

Defines functions run_app

Documented in run_app

#' Run the Shiny Application
#'
#' @export
#'
run_app <- function() {
  shiny::addResourcePath(
    "www", system.file("app/www", package = "helseatlas")
  )

  shiny::shinyApp(
    ui = app_ui, server = app_server
  )
}
Helseatlas/shinymap documentation built on June 11, 2020, 3:38 a.m.