R/mod_home.R

Defines functions mod_home_ui mod_home_server

Documented in mod_home_server mod_home_ui

# 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({
  })

}
lanceupton/shinyScrape documentation built on Nov. 4, 2019, 4:16 p.m.