#' @export
ui <- function() {
fluidPage(
titlePanel("Simple application inside package"),
moduleA_ui("A"),
moduleB_ui("B")
)
}
#' @export
server <- function(input, output, session) {
callModule(moduleA_server, "A")
callModule(moduleB_server, "B")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.