io_targets_server <- function(
id,
cohort_obj
){
shiny::moduleServer(
id,
function(input, output, session) {
call_module_server(
"distributions",
cohort_obj,
server_function = io_target_distributions_server,
ui_function = io_target_distributions_ui
)
call_module_server(
"datatable",
cohort_obj,
server_function = io_target_datatable_server,
ui_function = io_target_datatable_ui
)
}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.