Nothing
## -----------------------------------------------------------------------------
library(teal.reporter)
library(shiny)
ui <- fluidPage(simple_reporter_ui("simple"))
server <- function(input, output, session) {
# The bulk of your module logic here
create_module_card <- function(card) {
card$append_text("This is the content of the report from the `simple` module")
}
simple_reporter_srv("simple", Reporter$new(), create_module_card)
}
if (interactive()) shinyApp(ui, server)
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.