Empty state dependencies to include anywhere in your UI but ideally at the top.
Examples
library(shiny)
library(shiny.emptystate)
if (interactive()) {
ui <- fluidPage(
use_empty_state(),
dataTableOutput("my_table")
)
}
Empty state dependencies to include anywhere in your UI but ideally at the top.
library(shiny)
library(shiny.emptystate)
if (interactive()) {
ui <- fluidPage(
use_empty_state(),
dataTableOutput("my_table")
)
}