Nothing
#' Create the body section of the application
#'
#' Create a simple body containing a header and a content for the main body
#'
#' @param ... The elements to include within the body of the modal
#' @param header OPTIONAL. Items to display in the header section (use the titlePanel() function to set this property).
#'
#' @note Endeavor to use as standalone and not within the fluidPage, as this function it already called within fluidPage
#'
#' @return An HTML of the body of the page
#'
#' @examples
#'
#' if (interactive()) {
#' dashboardBody(
#' header = titlePanel(
#' left = "Sample nextGenShinyApps Title",
#' right = shiny::icon("user")
#' ),
#' "obi's preferred main body"
#' )
#' }
#'
#' @export
dashboardBody <- function(header, ...) {
shiny::div(
class = "page-content-wrapper",
header,
tags$main(
id = "js-page-content", role = "main", class = "page-content",
...
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.