R/mod_customer_overview.R

Defines functions mod_customer_overview_server mod_customer_overview_ui

#' customer_overview UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd 
#'
#' @importFrom shiny NS tagList 
mod_customer_overview_ui <- function(id){
  ns <- NS(id)
  tagList(
 
  )
}
    
#' customer_overview Server Function
#'
#' @noRd 
mod_customer_overview_server <- function(input, output, session){
  ns <- session$ns
 
}
    
## To be copied in the UI
# mod_customer_overview_ui("customer_overview_ui_1")
    
## To be copied in the server
# callModule(mod_customer_overview_server, "customer_overview_ui_1")
 
errcHuang/BasketCase documentation built on Aug. 31, 2020, 12:46 a.m.