This function create a detail component that you can click for further details.
Examples
if (interactive()) {
ui <- fluidPage(
shinyGovstyle::header(
main_text = "Example",
secondary_text = "User Examples",
logo="shinyGovstyle/images/moj_logo.png"),
shinyGovstyle::banner(
inputId = "banner", type = "Beta", 'This is a new service')
)
server <- function(input, output, session) {}
shinyApp(ui = ui, server = server)
}