inst/simple/app.R

library(shiny)
library(auth0)

ui <- bootstrapPage(
  fluidRow(plotOutput("plot"))
)

server <- function(input, output, session) {
  output$plot <- renderPlot({
    plot(1:10)
  })
}

shinyAppAuth0(ui, server)
curso-r/auth0 documentation built on Feb. 18, 2024, 6:05 p.m.