Nothing
library(shiny)
library(shinydisconnect)
library(shinyjs)
library(emailjsr)
source("inst/customshinyDisconnect.R")
ui <- fluidPage(
useShinyjs(),
actionButton("disconnect", "Disconnect the app"),
#emailjsr::use_emailjsr(
# serviceId = "zarathu", userId = "j3khsaTA4a3cNMahu", templateId = "template_8lmtpd9"
#)
)
server <- function(input, output, session) {
observeEvent(input$disconnect, {
session$close()
})
}
shinyApp(ui, server)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.