Nothing
library(shiny)
library(shinyjs)
devtools::load_all()
ui <- calcite_shell(
calcite_action(
id = "test_action",
text = "Click me",
icon = "check",
text_enabled = TRUE
),
verbatimTextOutput("output")
)
server <- function(input, output, session) {
observeEvent(input$test_action, {
shinyjs::logjs("hi")
})
output$output <- renderPrint({
input$test_action
})
}
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.