tabTableOne {vvshiny} | 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)