R/run_app.R

Defines functions run_app

Documented in run_app

#' run the Shiny Application
#'
#'
#' @export
#' @importFrom shiny shinyApp
#'
#' @examples
#'
#' if (interactive()) {
#'
#'   run_app()
#'
#' }
#'
run_app <- function() {
  shinyApp(ui = app_ui(), server = app_server)
}
ThinkR-open/prenomsapp documentation built on Feb. 21, 2023, 7:08 p.m.