module_session_info | R Documentation |
teal
user session info moduleModule 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.
ui_session_info(id)
srv_session_info(id)
id |
( |
NULL
invisibly
ui <- fluidPage(
ui_session_info("session_info")
)
server <- function(input, output, session) {
srv_session_info("session_info")
}
if (interactive()) {
shinyApp(ui, server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.