R/mod_projectview.R

Defines functions mod_projectview_ui mod_projectview_server

Documented in mod_projectview_server mod_projectview_ui

# Module UI
  
#' @title   mod_projectview_ui and mod_projectview_server
#' @description  Shiny Module: Tab 'Projektansicht'
#'
#' @param id shiny id
#' @param input internal
#' @param output internal
#' @param session internal
#'
#' @rdname mod_projectview
#'
#' @keywords internal
#' @export 
#' @importFrom shiny NS tagList 
mod_projectview_ui <- function(id){
  ns <- NS(id)
  tagList(
    h1("Projektansicht")
  )
}
    
# Module Server
    
#' @rdname mod_projectview
#' @export
#' @keywords internal
    
mod_projectview_server <- function(input, output, session){
  ns <- session$ns
}
degiwo/golemtest documentation built on Nov. 16, 2019, 12:03 a.m.