Skip to contents

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")
  )
}