# Module UI
#' @title mod_summaryBox_ui and mod_summaryBox_server
#' @description A shiny Module.
#'
#' @param id shiny id
#' @param input internal
#' @param output internal
#' @param session internal
#'
#' @rdname mod_summaryBox
#'
#' @keywords internal
#' @export
#' @importFrom shiny NS tagList
mod_summaryBox_ui <- function(id){
ns <- NS(id)
tagList(
)
}
# Module Server
#' @rdname mod_summaryBox
#' @export
#' @keywords internal
mod_summaryBox_server <- function(input, output, session){
ns <- session$ns
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.