# UI
uiXx <- function(id) {
ns <- NS(id)
fluidRow(
tabTitle(""),
column(
6,
box(
title = "XXX", solidHeader = TRUE, status = "primary", width = 12,
div(
class = "text-minor",
markdown(
'
')
),
##xxx
spsCodeBtn(
ns("code_"),
show_span = TRUE,
'
'
)
)
),
column(
6,
box(
title = "XXX", solidHeader = TRUE, status = "primary", width = 12,
div(
class = "text-minor",
markdown(
'
')
),
##xxx
spsCodeBtn(
ns("code_"),
show_span = TRUE,
'
'
)
)
)
)
}
# Server
serverXx <- function(id) {
moduleServer(
id,
function(input, output, session) {
}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.