R/mod_contact.R

Defines functions mod_contact_server mod_contact_ui

#' contact UI Function
#'
#' @description A shiny Module.
#'
#' @param id,input,output,session Internal parameters for {shiny}.
#'
#' @noRd
#'
#' @importFrom shiny NS tagList
mod_contact_ui <- function(id){
  ns <- NS(id)
  tagList(
    fluidRow(
      column(width = 10, includeMarkdown(app_sys("app/www/contact.md")))
      )
  )
}

#' contact Server Functions
#'
#' @noRd
mod_contact_server <- function(id){
  moduleServer( id, function(input, output, session){
    ns <- session$ns

  })
}

## To be copied in the UI
# mod_contact_ui("contact_1")

## To be copied in the server
# mod_contact_server("contact_1")

Try the RawHummus package in your browser

Any scripts or data that you put into this service are public.

RawHummus documentation built on April 20, 2023, 9:11 a.m.