Render a value box
Usage
renderValueBox(expr, env = parent.frame(), quoted = FALSE)Examples
if (interactive()) {
shiny::shinyApp(
ui = bslib::page_fluid(valueBoxOutput("tickets")),
server = function(input, output, session) {
output$tickets <- renderValueBox({
valueBox("128", "Open tickets", icon = icon("inbox"), color = "primary")
})
}
)
}
