#' Consistency
#'
#' In development
#' @rdname mod_consistency
#' @param id standard shiny id argument
#' @param label standard shiny label argument
mod_consistency_ui <- function(id, label){
ns <- NS(id)
tabItem(tabName = label,
fluidRow(
tabBox(width = 12,
title = "",
id = "tabset2",
height = "450px",
tabPanel("Consistency",
"This module is under development",
# height = "400"
)
)
)
)
}
#' @rdname mod_consistency
#' @param input standard shiny input argument
#' @param output standard shiny output argument
#' @param session standard shiny session argument
#' @param data data for use in calculations
mod_consistency_server <- function(input, output, session, data){
ns <- session$ns
# message(dat())
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.