mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
11 lines
119 B
R
11 lines
119 B
R
library(shiny)
|
|
|
|
baduicall <- function() {
|
|
stopApp()
|
|
stop("ui boom")
|
|
}
|
|
|
|
ui <- fluidPage(
|
|
wellPanel(baduicall())
|
|
)
|