Skip to contents

[Experimental] three buttons for adding cards, downloading and resetting the Report.

For more details see the vignette: vignette("simpleReporter", "teal.reporter").

Usage

simple_reporter_ui(id)

Arguments

id

character(1) this shiny module's id.

Value

shiny.tag

Examples

if (interactive()) {
  shiny::shinyApp(
    ui = shiny::fluidPage(simple_reporter_ui("simple")),
    server = function(input, output, session) {
      simple_reporter_srv("simple", Reporter$new(), function(card) card)
    }
  )
}