Skip to contents

Use db_browser_ui() and db_browser_server() to include the data lake browser as a Shiny module in your own app.

Usage

db_browser_server(id, height = "500px")

Arguments

id

Character of length 1, module ID (must match UI)

height

Height of data preview tables

Value

A Shiny module server function

See also

Examples

if (FALSE) { # \dontrun{
# In your Shiny app:
server <- function(input, output, session) {
  db_browser_server("browser1")
}
} # }