Files
shiny/examples/01_allcaps/client.R

18 lines
264 B
R

library(shiny)
shinyUI(
application(
headerPanel("Example 1: All Caps"),
sidebarPanel(
textInput("val", label = "Input:", value = "Hello, World!")
),
mainPanel(
textOutput("valUpper", label = "You said:")
)
)
)