Nothing
library(shiny)
devtools::load_all()
ui <- div(
calcite_button(
id = "test_button",
"Click Me!",
appearance = "solid",
kind = "brand"
),
tags$br(),
tags$br(),
verbatimTextOutput("button_state")
)
server <- function(input, output, session) {
# Display button state including click count
output$button_state <- renderPrint({
input$test_button
})
}
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.