Build a tabler tag list
Arguments
- ...
Slot for tablerTag.
Author
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerTagList(
lapply(X = 1:5, FUN = function(i) {
tablerTag(name = i)
})
)
)
),
server = function(input, output) {}
)
}