Help_UI <- function(id, label="Help1") {
ns <- NS(id)
tagList(
verbatimTextOutput(ns("Intro")),
checkboxInput(ns("test"),"test")
)
}
Help_Server <- function(id) {
moduleServer(id,
function(input, output, session) {
output$Intro <- renderText({
"Help and info"
})
}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.