Generates an HTML footer element containing the specified text.
Arguments
- text
A string. The text or HTML content to be included within the footer.
Value
An HTML footer element containing the specified text.
Examples
if (FALSE) { # \dontrun{
# Example usage within a Shiny UI
ui <- fluidPage(
fn_footer(text = "<p>© 2024 My Company</p>")
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
} # }