R/create-footer.R

Defines functions create_footer

#' Create app footer
#'
#' The app footer shows a link to the issue tracker and a contact link.
#'
#' @noRd
#' @param email Email address to contact
#' @return A footer tag
create_footer <- function(email) {
  tags$footer(
    p(
      a(href = "https://github.com/Sage-Bionetworks/dccvalidator/issues", "Report an issue"), # nolint
      " | ",
      a(href = glue::glue("mailto:{email}"), "Contact us")
    ),
    align = "left"
  )
}

Try the dccvalidator package in your browser

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

dccvalidator documentation built on July 2, 2020, 4:05 a.m.