| bulmaActionButton | R Documentation | 
Add an action button.
bulmaActionButton(inputId, label, color = NULL, wrap = TRUE)
| inputId | the input slot that will be used to access the value. | 
| label | button label. | 
| color | button color. | 
| wrap | if  | 
John Coene, jcoenep@gmail.com
if(interactive()){
 library(shiny)
 shinyApp(
   ui = bulmaPage(
     bulmaActionButton("goButton", "Render in console")
   ),
   server = function(input, output) {
     observeEvent(input$goButton, {
       print("button clicked")
     })
  }
 )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.