Module to display the user session info popup and to download a lockfile. Module is included
when running init()
but skipped when using module_teal
. Please be aware that session info
contains R session information, so multiple module's calls will share the same information.
Examples
ui <- fluidPage(
ui_session_info("session_info")
)
server <- function(input, output, session) {
srv_session_info("session_info")
}
if (interactive()) {
shinyApp(ui, server)
}