use_empty_state {shiny.emptystate} | R Documentation |
Add empty state dependency
Description
Empty state dependencies to include anywhere in your UI but ideally at the top.
Usage
use_empty_state()
Value
a html_dependency object
Examples
library(shiny)
library(shiny.emptystate)
if (interactive()) {
ui <- fluidPage(
use_empty_state(),
dataTableOutput("my_table")
)
}
[Package shiny.emptystate version 0.1.0 Index]