| mod-dl | R Documentation | 
A shiny Module.
mod_dl_ui(id)
mod_dl_server(id, dataIn = reactive({
    NULL
}))
id | 
 xxx  | 
dataIn | 
 xxx  | 
NA
if(interactive()){
data(ft_na)
ui <- mod_dl_ui('dl')
server <- function(input, output, session) {
  
  mod_dl_server(id = 'dl',
                dataIn = reactive({ft_na})
                )
}
shinyApp(ui=ui, server=server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.