Shiny button

shinyButton(id, label, ...)

Arguments

id

The input id to read value from.

label

The display label of the button.

...

List of tag attributes.

Examples

if (interactive()) {
  shinyButton("awesome-id", "button")
}