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