Skip to contents

This function uses shinyGovstyle::header() to create a header banner using the DfE logo.

Usage

header(header)

Arguments

header

Text to use for the header of the dashboard

Value

a header html shiny object

Examples


if (interactive()) {
  ui <- fluidPage(
    dfeshiny::header(
      header = "User Examples"
    )
  )

  server <- function(input, output, session) {}

  shinyApp(ui = ui, server = server)
}