Shiny modules providing the Export Guide
Examples
ui <- shiny::fluidPage(
exportGuideUI("exportGuide")
)
server <- function(input, output, session) {
exportGuideServer("exportGuide", "test")
}
if (interactive()) {
shiny::shinyApp(ui, server)
}