R/mod_02_calendar.R

Defines functions mod_02_calendar_server mod_02_calendar_ui mod_mod_02_calendar_server mod_mod_02_calendar_ui

#' mod_02_calendar UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd 
#'
#' @importFrom shiny NS tagList 
mod_mod_02_calendar_ui <- function(id){
  ns <- NS(id)
  tagList(
 
  )
}
    
#' mod_02_calendar Server Function
#'
#' @noRd 
mod_mod_02_calendar_server <- function(input, output, session){
  ns <- session$ns
 
}
    
## To be copied in the UI
# mod_mod_02_calendar_ui("mod_02_calendar_ui_1")
    
## To be copied in the server
# callModule(mod_mod_02_calendar_server, "mod_02_calendar_ui_1")
 
#' 02_calendar UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd 
#'
#' @importFrom shiny NS tagList 
mod_02_calendar_ui <- function(id){
  ns <- NS(id)
  tagList(
 
  )
}
    
#' 02_calendar Server Function
#'
#' @noRd 
mod_02_calendar_server <- function(input, output, session){
  ns <- session$ns
 
}
    
## To be copied in the UI
# mod_02_calendar_ui("02_calendar_ui_1")
    
## To be copied in the server
# callModule(mod_02_calendar_server, "02_calendar_ui_1")
 
fBedecarrats/bikeMonitoR documentation built on Jan. 1, 2021, 1:16 a.m.