R/mod_show_heatmap.R

Defines functions mod_show_heatmap_server mod_show_heatmap_ui

#' show_heatmap UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd 
#'
#' @importFrom shiny NS tagList 
mod_show_heatmap_ui <- function(id){
  ns <- NS(id)
  tagList(
 
  )
}
    
#' show_heatmap Server Functions
#'
#' @noRd 
mod_show_heatmap_server <- function(id){
  moduleServer( id, function(input, output, session){
    ns <- session$ns
 
  })
}
    
## To be copied in the UI
# mod_show_heatmap_ui("show_heatmap_ui_1")
    
## To be copied in the server
# mod_show_heatmap_server("show_heatmap_ui_1")
taiawu/Exp1243_heatmap_cache documentation built on Aug. 2, 2022, 3:07 p.m.