Is there a way to add a footer to a shiny dashboard?. Suppose you have the following very basic example, and you want to add a footer to `dashboardBody()`
## app.R ##
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody()
)
server <- function(input, output) { }
shinyApp(ui, server)Thanks for the help!