View source: R/ui_tab_tables.R
tabTableOne | R Documentation |
Function to create a tab panel with one table.
tabTableOne(id, table_one)
id |
A string representing the id. |
table_one |
A string representing the table. |
A tab panel with one table.
dummy_data <- data.frame(
A = 1:5,
B = letters[1:5]
)
dummy_dt <- DT::datatable(dummy_data)
tabTableOne("dummy_id", dummy_dt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.