R/startAPP.R

Defines functions startApp

Documented in startApp

#' launches the shinyAppDemo app
#'
#' @export startApp
#'
#' @return shiny application object
#'
#' @example \dontrun {startApp()}
#'
#' @import shiny
#'


# wrapper for shiny::shinyApp()
startApp <- function() {
  shiny::shinyApp(ui = AppUI, server = AppServer)
}
athiemicke/FCBapp3 documentation built on June 17, 2020, 12:31 a.m.