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/helseatlas documentation built on June 9, 2020, 5:48 p.m.