Renders an empty state message for artists with no artworks. Displays different content depending on whether the viewer is the artist (owner) or a visitor.

emptyStateUI(ns, is_owner = FALSE)

Arguments

ns

Namespace function from parent module

is_owner

Logical indicating if viewer is the artist owner

Value

Shiny UI tagList

Examples

if (FALSE) { # \dontrun{
output$empty_state <- renderUI({
  emptyStateUI(ns, is_owner = FALSE)
})
} # }