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