Files
shiny/inst/examples/01_allcaps/ui.R
2012-07-23 08:59:29 -07:00

19 lines
267 B
R

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