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