R/mod_customer_profiles.R

Defines functions mod_customer_profiles_server mod_customer_profiles_ui

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