# Module UI
#' @title mod_projectview_ui and mod_projectview_server
#' @description Shiny Module: Tab 'Projektansicht'
#'
#' @param id shiny id
#' @param input internal
#' @param output internal
#' @param session internal
#'
#' @rdname mod_projectview
#'
#' @keywords internal
#' @export
#' @importFrom shiny NS tagList
mod_projectview_ui <- function(id){
ns <- NS(id)
tagList(
h1("Projektansicht")
)
}
# Module Server
#' @rdname mod_projectview
#' @export
#' @keywords internal
mod_projectview_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.